Searched refs:html_entity_decode (Results 1 – 12 of 12) sorted by relevance
/PHP-5.3/ext/standard/tests/strings/ |
H A D | bug53021.phpt | 5 var_dump(unpack("H*",html_entity_decode("é", ENT_QUOTES, "ISO-8859-1"))); 7 echo html_entity_decode(""", ENT_NOQUOTES, 'UTF-8'), "\n"; 8 echo html_entity_decode(""", ENT_NOQUOTES, 'UTF-8'), "\n"; 9 echo html_entity_decode(""", ENT_QUOTES, 'UTF-8'), "\n"; 10 echo html_entity_decode(""", ENT_QUOTES, 'UTF-8'), "\n"; 11 echo html_entity_decode(""", ENT_COMPAT, 'UTF-8'), "\n"; 12 echo html_entity_decode(""", ENT_COMPAT, 'UTF-8'), "\n"; 15 echo html_entity_decode("'", ENT_NOQUOTES, 'UTF-8'), "\n"; 16 echo html_entity_decode("'", ENT_QUOTES, 'UTF-8'), "\n"; 17 echo html_entity_decode("'", ENT_COMPAT, 'UTF-8'), "\n";
|
H A D | bug25707.phpt | 2 Bug #25707 (html_entity_decode over-decodes <) 5 var_dump(html_entity_decode("<", ENT_COMPAT, 'ISO-8859-1')); 6 var_dump(html_entity_decode("&", ENT_COMPAT, 'ISO-8859-1')); 7 var_dump(html_entity_decode("<", ENT_COMPAT, 'ISO-8859-1'));
|
H A D | bug43927.phpt | 2 Bug #43927 (koi8r is missing from html_entity_decode()) 5 var_dump(html_entity_decode("<", ENT_COMPAT, 'koi8-r')); 6 var_dump(html_entity_decode("&", ENT_COMPAT, 'koi8-r')); 7 var_dump(html_entity_decode("<", ENT_COMPAT, 'koi8-r'));
|
H A D | bug21338.phpt | 2 Bug #20934 (html_entity_decode() crash when "" is passed) 5 var_dump(html_entity_decode(NULL)); 6 var_dump(html_entity_decode(""));
|
H A D | bug29119.phpt | 2 Bug #29119 (html_entity_decode() misbehaves with UTF-8) 5 var_dump(bin2hex(html_entity_decode('  ‘†′⁄€', ENT_QUOTES…
|
H A D | htmlentities.phpt | 12 echo html_entity_decode($sc_encoded); 13 echo html_entity_decode($ent_encoded);
|
H A D | htmlentities17.phpt | 2 htmlentities() / html_entity_decode() #8592 - #9002 table test 23 list(,$result) = unpack('H6', html_entity_decode($test[1], ENT_QUOTES, 'UTF-8'));
|
H A D | html_entity_decode_html4.phpt | 2 html_entity_decode() conformance check (HTML 4) 261 echo bin2hex(html_entity_decode($str, ENT_QUOTES, "UTF-8")), "\n";
|
/PHP-5.3/ext/standard/ |
H A D | html.h | 39 PHP_FUNCTION(html_entity_decode);
|
H A D | html.c | 1387 PHP_FUNCTION(html_entity_decode) in PHP_FUNCTION() argument
|
H A D | basic_functions.c | 2693 PHP_FE(html_entity_decode, arginfo_html_entity_decode)
|
/PHP-5.3/ |
H A D | NEWS | 1572 . Fixed bug #53021 (In html_entity_decode, failure to convert numeric entities 1574 ENT_NOQUOTES in html_entity_decode that had introduced the bug (rev 1575 #185591) to other encodings. Additionaly, html_entity_decode() now doesn't 3036 - Fixed html_entity_decode() incorrectly converting numeric html entities 3918 - Fixed bug #43927 (koi8r is missing from html_entity_decode()). (andy at demos dot su, Tony) 6560 - Fixed bug #32608 (html_entity_decode() converts single quotes even if 7108 - Fixed bug #29119 (html_entity_decode() misbehaves with UTF-8). (Moriyoshi)
|
Completed in 46 milliseconds