php json_decode是php解析json数据格式函数,它可以返回对象和数组,但是别忘了对象和数组是不同的。
$url = ‘http://www.wangzhiguang.com.cn/test.php’;
$json = file_get_contents($url);
$list=json_decode($json);
这时候$list是一个对象如果想取到值需要用$list->***这样来得到值。
$url = ‘http://www.wangzhiguang.com.cn/test.php’;
$json = file_get_contents($url);
$list=json_decode($json,true);
这时候$list是一个数组,我们可以用php经行循环和提取值。