Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,您可以在农村管理之前看到报价,这在 json 解码时引起了问题。我如何使用 PHP json_decode 来检索它?
[{ "employ":{ "id":"234", "name":""rural management" }, "pos":{ "name":"Programme Officer" } }]
你不能。数据不是 JSON。
在将数据传递给json_decode.
json_decode
作为一个快速破解,您可以只执行字符串替换并更改""为"\"全局,但这不是一个强大的解决方案。您从中获取数据的底层 JSON 生成器存在问题,需要在源头进行修复(可能通过切换到使用 JSON 库而不是将字符串组合在一起)。
""
"\"