json_decode 解析带BOM头文件错误

Posted alin_qu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json_decode 解析带BOM头文件错误相关的知识,希望对你有一定的参考价值。

 1            //取前三个字符 并转化为ASCII 判断是否为BOM文件
 2 
 3            $charset[1] = substr($result, 0, 1);
 4             $charset[2] = substr($result, 1, 1);
 5             $charset[3] = substr($result, 2, 1);
 6             if (ord($charset[1]) == 239 && ord($charset[2]) == 187 &&
 7                 ord($charset[3]) == 191) {
 8                 $result = substr($result, 3);
 9             }
10 
11             $json_result    = json_decode($result,true);

 

以上是关于json_decode 解析带BOM头文件错误的主要内容,如果未能解决你的问题,请参考以下文章

由于BOM头导致的Json解析出错

php去掉文件UTF-8的BOM头

PHP去除BOM头的方法

PHP去除BOM头的方法

php文件转为有bom头utf8编码不乱码,转为无bom头utf8乱码

关于JSON解析的深坑之BOM头