json_decode给出NULL

时间:2012-12-04 10:29:06

标签: json

可能是一个重复的问题,我想我知道它为什么会发生,但无法解决它。

我有一个json字符串,我传递给PHP。在console.log(JSON.stringify(obj));我得到正确的字符串,正常的quots - > “但是当我在php端做error_log()时,我得到了这个:

 {"obj":{"1063":{"id":{"article_id":"1063","article_no_internal":"400086","article_name_internal":"Hotelbox Kurzurlaub"},"stk":"100"}}}

它充满了& quot而我的var_dump(json_decode($part_list_array, true));会返回NULL

知道为什么会这样吗?

1 个答案:

答案 0 :(得分:1)

看起来您的角色正在转换为HTML实体。试试这个:

var_dump(json_decode(html_entity_decode($part_list_array), true));