0

我正在使用 PHP 5.3 生产服务器,因此html_entity_decode($, ENT_XML1)不可用。

我的问题很简单:例如转换为Ÿ字节的方法是什么?

4

1 回答 1

0
$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.

于 2014-01-13T16:42:57.780 回答