php json_decode 返回空

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php json_decode 返回空相关的知识,希望对你有一定的参考价值。

在做小程序时,有比较的复杂的数据需要传到后台处理,一般会用字符串拼接,然后在后台接口里解析就可以得到方便自己处理的数据类型;

测试的时候发现,数据可以传到后台,但是用json_decode 解析时返回空。

一般像这样的问题,要考虑到编码,html实体,反斜杠的原因。

html_entity_decode() 函数的作用是把 HTML 实体转换为字符。

stripslashes() 函数的作用是删除反斜杠。

加上就可以了。

 

以上是关于php json_decode 返回空的主要内容,如果未能解决你的问题,请参考以下文章

php json_decode失败,返回null

PHP 获取JSON json_decode返回NULL解决办法

PHP 获取JSON json_decode返回NULL解决办法

PHP json_decode() 使用有效的 JSON 返回 NULL?

php json_decode json字符串返回NULL

json_encode/json_decode - 在 PHP 中返回 stdClass 而不是 Array