可以使用json_decode()
函数将JSON字符串转换为PHP数组。该函数的用法如下:
$json = '{"name":"John", "age":30, "city":"New York"}';
$array = json_decode($json, true);
print_r($array);
输出结果为:
Array
(
[name] => John
[age] => 30
[city] => New York
)
在json_decode()
函数中,第一个参数是要转换的JSON字符串,第二个参数设置为true
可以将JSON对象转换为关联数组。如果不设置第二个参数或设置为false
,则将JSON对象转换为PHP对象。