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