网站首页
php json_decode null原因
发布时间:2016-05-17 11:16:25编辑:admin阅读()
json_decode要求的字符串比较严格:
(1)使用UTF-8编码
(2)不能在最后元素有逗号
(3)不能使用单引号
(4)不能有\r,\t,如果有请替换
在返回的json字符串中返回了BOM头的不可见字符,某些编辑器默认会加上BOM头,如下处理才能正确解析json数据
print_r(json_decode(trim($contents,chr(239).chr(187).chr(191)),true));