json_decode转换json数据为php数组时失败,检验json

有这么个json,

读取json文件的内容:$json_list = file_get_contents("http://".SERVERIP."/service/upload_dir/".$json_file);

将$json_list转化为php数组,$arr = json_decode($json_list,true);

问题来了:通过phpstorm发现$arr是这样的

原因:是这个json文件是GB2312的编码格式。

方法:通过json_last_error()函数对该json文件检验。$ret = json_last_error();结果为5。

json_last_error错误msg对照表:
0 = JSON_ERROR_NONE
1 = JSON_ERROR_DEPTH
2 = JSON_ERROR_STATE_MISMATCH
3 = JSON_ERROR_CTRL_CHAR
4 = JSON_ERROR_SYNTAX
5 = JSON_ERROR_UTF8

 我的处理方式:

$ret = json_last_error();
$arr2 = json_decode(iconv('GB2312','UTF-8',$json_list),true);

json文件部分内容:

json_decode转换json数据为php数组时失败,检验json_第1张图片

你可能感兴趣的:(PHP)