PHP/HTML/html entity decode

Материал из Web эксперт
Версия от 07:05, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

string html_entity_decode ( string html [, int options [, string charset]] ) converts an &-escaped string into its original format

 
<?
    $f = "Bill & Ben";
    $s = htmlentities($f);
    $unsafe = html_entity_decode($s);
?>