今天我们利用了正则表达式来判断preg_replace替换由jquery转义过来的如\u5c71\u4e1c,但有的时间还是会出现中文问题.
利用iconv函数解决代码如下:
<?php $code = json_encode($str); $code = preg_replace("#u([0-9a-f]+)#ie", "iconv('UCS-2', 'UTF-8', pack('H4', '1'))", $code); ?>
文章网址:
随意转载^^但请附上教程地址。