PHP json_encode中文乱码解决方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP json_encode中文乱码解决方法相关的知识,希望对你有一定的参考价值。
<?php /** * 【PHP json_encode中文乱码解决方法】 * 这里说的“中文乱码”其实不是不是真的乱码,而是在最后的json结果中显示下面的字串: * {“name”:”\u4e2d\u6587\u5b57\u7b26\u4e32″,”value”:”test”} * * 【解决办法】 * 在使用json_encode之前把字符用函数urlencode()处理一下,然后再json_encode,输出结果的时候在用函数urldecode()转回来。具体如下: * */ $testJSON=array(‘name‘=>‘中文字符串‘,‘value‘=>‘test‘); //echo json_encode($testJSON); foreach ( $testJSON as $key => $value ) { $testJSON[$key] = urlencode ( $value ); } echo urldecode ( json_encode ( $testJSON ) ); //查看输出结果为: {“name”:”中文字符串”,”value”:”test”}
以上是关于PHP json_encode中文乱码解决方法的主要内容,如果未能解决你的问题,请参考以下文章