共计 612 个字符,预计需要花费 2 分钟才能阅读完成。
PHP 解析 JSON 数组的方法是使用 json_decode() 函数,该函数可以将 JSON 格式的字符串转换为 PHP 数组或对象。具体用法如下:
1、将 JSON 字符串转换为 PHP 数组:
$json_str = '{"name":"John", "age":30, "city":"New York"}';
$php_arr = json_decode($json_str, true);
在上面的代码中,$json_str 是一个 JSON 格式的字符串,使用 json_decode() 函数将其转换为 PHP 数组 $php_arr。第二个参数 true 表示将 JSON 对象转换为关联数组,不使用时默认转换为 PHP 对象。
2、将 JSON 字符串转换为 PHP 对象:
$json_str = '{“name”:”John”, “age”:30, “city”:”New York”}';
$php_obj = json_decode($json_str);
在上面的代码中,$json_str 是一个 JSON 格式的字符串,使用 json_decode() 函数将其转换为 PHP 对象 $php_obj。不使用第二个参数时,默认转换为 PHP 对象。转换后,可以使用 PHP 的数组或对象操作符来访问 JSON 数据,例如:
echo $php_arr['name']; // 输出 John
echo $php_obj->age; // 输出 30
丸趣 TV 网 – 提供最优质的资源集合!