PHP把unicode编码的json字符串转成中文的方法,代码如下:
$response = [ 'status' => 401, 'msg' => '非法请求', 'data' => null ]; echo json_encode($response,JSON_UNESCAPED_UNICODE);
结果:
{"status":401,"msg":"非法请求","data":null}
还有另外一种方法:
$array = array( 'test'=>urlencode("建 站 管 家") ); $array = json_encode($array); echo urldecode($array); //{"test":"建 站 管 家"}
上一篇: 《建站管家》二次开发文档