这似乎起作用:
$url = 'http://www.worldweatheronline.com/feed/weather.ashx?q=schruns,austria&format=json&num_of_days=5&key=8f2d1ea151085304102710%22';$content = file_get_contents($url);$json = json_depre($content, true);foreach($json['data']['weather'] as $item) { print $item['date']; print ' - '; print $item['weatherDesc'][0]['value']; print ' - '; print '<img src="' . $item['weatherIconUrl'][0]['value'] . '" border="0" alt="" />'; print '<br>';}
如果将json_depre的第二个参数设置为true,则会得到一个数组,因此无法使用->语法。我还建议您安装JSONview
Firefox扩展),以便您可以以类似于 Firefox显示XML结构的漂亮格式的树状视图查看生成的json文档。这使事情变得容易得多。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)