温馨提示×

php怎么将json转换成数组

小亿
84
2023-11-29 15:18:42
栏目: 编程语言

您可以使用json_decode()函数将JSON字符串转换为数组。示例代码如下:

$jsonString = '{"name":"John", "age":30, "city":"New York"}';
$array = json_decode($jsonString, true);

// 输出数组
print_r($array);

这将输出以下结果:

Array
(
    [name] => John
    [age] => 30
    [city] => New York
)

json_decode()函数中,第一个参数是要转换的JSON字符串,第二个参数是一个可选的布尔值,用于指定是否将JSON对象转换为关联数组。如果第二个参数为true,则将返回关联数组,否则将返回对象。

0