码迷,mamicode.com
首页 > Web开发 > 详细

PHP json_decode返回null解析失败原因

时间:2014-06-02 18:25:19      阅读:593      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   a   

在PHP5.4之前 json_decode函数有两个参数json_decode有两个参数,第一个是待解析的字符串,第二个是是否解析为Array

json_decode要求的字符串比较严格:
(1)使用UTF-8编码
(2)不能在最后元素有逗号
(3)不能使用单引号
(4)不能有r,t,如果有请替换

所以问题来了,不小心在返回的json字符串中返回了BOM头的不可见字符,某些编辑器默认会加上BOM头,如下处理才能正确解析json数据:

$result = json_decode(trim($contents,chr(239).chr(187).chr(191)),true);
print_r($result);

 

参考:http://www.jishutie.net/p/19227.html 

PHP json_decode返回null解析失败原因,布布扣,bubuko.com

PHP json_decode返回null解析失败原因

标签:c   style   class   blog   code   a   

原文地址:http://www.cnblogs.com/xxcn/p/3764426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!