我正在使用 PHP 5.3 生产服务器,因此html_entity_decode($, ENT_XML1)
不可用。
我的问题很简单:例如转换为Ÿ
字节的方法是什么?
我正在使用 PHP 5.3 生产服务器,因此html_entity_decode($, ENT_XML1)
不可用。
我的问题很简单:例如转换为Ÿ
字节的方法是什么?
$str = preg_replace('/&#(\d+);/me', 'chr(\\1)', $str);
Seems to be a hack for this problem.
Found at http://php.net/html_entity_decode#47371.
But I still don't understand the logic behind it.