php中string转json格式,输出为什么什么都没有?

2024-11-22 15:21:04
推荐回答(1个)
回答1:

json_decode只能解析标准的json字符串,像这样的。

$str = '{"1":2,"4":3,"k":"z","5":[1,"a"]}';

echo json_decode($str);