随手摘 PHP出现json_encode中文乱码的最佳解决方法 2015年06月25日 咪咪猪 留下评论 <?php $testJSON=array('name'=>'中文字符串','value'=>'test'); //echo json_encode($testJSON); foreach ( $testJSON as $key => $value ) { $testJSON[$key] = urlencode ( $value ); } echo urldecode ( json_encode ( $testJSON ) ); ?>