时间:2021-07-01 10:21:17 帮助过:28人阅读
PHP如何把JSON字符串转为数组
在PHP中可以使用“json_decode()”函数把JSON字符串转为数组,该函数的作用对JSON格式的字符串进行解码,其语法为“json_decode(str,assoc)”,使用时将字符串传入第1个参数并将第2个设置为TRUE即可。
示例代码:
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($json, true));
打印结果:
array(5) { ["a"] => int(1) ["b"] => int(2) ["c"] => int(3) ["d"] => int(4) ["e"] => int(5) }
推荐教程:《PHP教程》
以上就是PHP如何把JSON字符串转为数组的详细内容,更多请关注Gxlcms其它相关文章!