mirror of
https://github.com/php/php-src.git
synced 2025-01-09 04:24:06 +08:00
9 lines
263 B
PHP
9 lines
263 B
PHP
--TEST--
|
|
Bug #29119 (html_entity_decode() misbehaves with UTF-8)
|
|
--FILE--
|
|
<?php
|
|
var_dump(bin2hex(html_entity_decode('  ‘†′⁄€', ENT_QUOTES, 'UTF-8')));
|
|
?>
|
|
--EXPECT--
|
|
string(42) "e28082e28089e28098e280a0e280b2e28184e282ac"
|