共计 337 个字符,预计需要花费 1 分钟才能阅读完成。
您可以使用 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
,则将返回关联数组,否则将返回对象。
丸趣 TV 网 – 提供最优质的资源集合!
正文完