php json_decode 函数解析 json 结果为 NULL

php json_decode 函数解析 json 结果为 NULL,第1张

php json_decode 函数解析 json 结果为 NULL

        php json_decode 函数解析 json 结果为 NULL,使用json_last_error()打印提示语法错误。可以对字符串进行转utf-8编码。或进行json数据格式化,如果格式正确参考解决方式二。

解决方式一:

htmlspecialchars_decode($str);

解决方式二:

    使用var_dump()打印json字符串,会发现json字符串前面会有3个空格,进行过滤BOM头。

function removeBOM($str) {
    if (0 === strpos(bin2hex($str), 'efbbbf')) {
        return substr($data, 3);
    }
    return $data;
}
removeBOM($str);

解决方式三:

    如果有unicode编码先进行解码,如果有反斜杠就去掉。

stripslashes(decodeUnicode($str));


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3004970.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-27
下一篇 2022-09-27

发表评论

登录后才能评论

评论列表(0条)

保存