我在text / json中有很多字符,如:
\xea = ê
\xaa = ª (I think)
如何在PHP中转换为正确的字符?
非常感谢。
答案 0 :(得分:0)
您可以尝试这样的事情:
$text = preg_replace_callback('/\\\\x([0-9a-fA-F]{2})/', function ($matches) { return chr(hexdec($matches[1])); },$text);
编辑:抱歉,我只是复制/粘贴了旧代码 - 不推荐使用e
修饰符。