发布网友 发布时间:2022-04-06 01:47
共3个回答
懂视网 时间:2022-04-06 06:08
php将json字符串转为数组的方法:可以利用json_decode函数来实现,如【json_decode($json, true);】。json_decode函数可以接受一个json格式的字符串并把它转换为php变量。
函数介绍:
(推荐教程:php视频教程)
json_decode接受一个JSON格式的字符串并且把它转换为PHP变量 ,当该参数$assoc为TRUE时,将返回array,否则返回object。
语法格式:
json_decode(string $json[,bool $assoc = false[,int $depth = 512[,int $options = 0]]])
代码实现:
<?php $json = '{"a":"php","b":"mysql","c":3}'; $json_Class=json_decode($json); $json_Array=json_decode($json, true); print_r($json_Class); print_r($json_Array); ?>
输出结果:
stdClass Object ( [a] => php [b] => mysql [c] => 3 ) Array ( [a] => php [b] => mysql [c] => 3 )
热心网友 时间:2022-04-06 03:16
json_decode(); 将json字符串转换为php数组追答你上面不是已经用file_get_contents()将文件内的内容获取出来了吗
$jsonString = file_get_contents( $jsonFilePath );
$array = json_decode( $jsonString );
$array便是你想要的数组
热心网友 时间:2022-04-06 04:34
$arr = urldecode($arr);追问括号里的$arr只得是file_get_contents转化之后的值吗?这个转换之后不是数组的格式呀。