json_decode 返回null 问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json_decode 返回null 问题相关的知识,希望对你有一定的参考价值。
当查询了各种方法,并且尝试了各种方法,
1. json字符串必须以双引号包含
$output = str_replace("‘", ‘"‘, $output);
2. json字符串必须是utf8编码
$output = iconv(‘gbk‘, ‘utf8‘, $output);
3.不能有多余的逗号 如:[1,2,]
用正则替换掉,preg_replace(‘/,\s*([\]}])/m‘, ‘$1‘, $output) 等等,
请不要放弃治疗,再尝试一个办法 $arr = json_decode(trim($json,chr(239).chr(187).chr(191)),true)。
是的,你发现成功啦!!!这个问题搞了好多个小时~~~
以上是关于json_decode 返回null 问题的主要内容,如果未能解决你的问题,请参考以下文章
PHP 获取JSON json_decode返回NULL解决办法
PHP 获取JSON json_decode返回NULL解决办法