Searched refs:mb_decode_numericentity (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/ext/mbstring/tests/ |
H A D | mb_decode_numericentity.phpt | 2 Test mb_decode_numericentity() function : Convert HTML-Entities to UTF-8 14 echo mb_decode_numericentity($str1, $convmap, "UTF-8")."\n"; 15 echo mb_decode_numericentity($str2, $convmap, "UTF-8")."\n"; 16 echo mb_decode_numericentity($str3, $convmap, "UTF-8")."\n"; 18 echo mb_decode_numericentity('�', $convmap), "\n"; 19 echo mb_decode_numericentity('�', $convmap), "\n"; 20 echo mb_decode_numericentity('�', $convmap), "\n"; 21 echo mb_decode_numericentity('�', $convmap), "\n"; 24 echo mb_decode_numericentity('�', $convmap), "\n"; 25 echo mb_decode_numericentity('�', $convmap), "\n"; [all …]
|
H A D | bug40685.phpt | 2 Bug #40685 (mb_decode_numericentity() removes '&' in the string) 8 var_dump(mb_decode_numericentity('&', $map, 'UTF-8')); 9 var_dump(mb_decode_numericentity('&&&', $map, 'UTF-8')); 10 var_dump(mb_decode_numericentity('&#', $map, 'UTF-8')); 11 var_dump(mb_decode_numericentity('&#x', $map, 'UTF-8')); 12 var_dump(mb_decode_numericentity('=', $map, 'UTF-8')); 13 var_dump(mb_decode_numericentity('=', $map, 'UTF-8')); 14 var_dump(mb_decode_numericentity('=', $map, 'UTF-8')); 15 var_dump(mb_decode_numericentity('=', $map, 'UTF-8'));
|
H A D | mb_str_unknown_encoding.phpt | 36 mb_decode_numericentity('coudenys', [], 'UTF-0'); 149 mb_decode_numericentity(): Argument #3 ($encoding) must be a valid encoding, "UTF-0" given
|
/PHP-8.0/ext/mbstring/ |
H A D | mbstring_arginfo.h | 342 ZEND_FUNCTION(mb_decode_numericentity); 436 ZEND_FE(mb_decode_numericentity, arginfo_mb_decode_numericentity)
|
H A D | mbstring.stub.php | 78 function mb_decode_numericentity(string $string, array $map, ?string $encoding = null): string {} function
|
H A D | mbstring.c | 3236 PHP_FUNCTION(mb_decode_numericentity) in PHP_FUNCTION() argument
|
/PHP-8.0/ |
H A D | NEWS | 1401 . Removed the unused $is_hex parameter from mb_decode_numericentity(). (cmb)
|
H A D | UPGRADING | 388 mb_decode_numericentity().
|
Completed in 35 milliseconds