使用json_decode在PHP中解析JSON对象

使用json_decode在PHP中解析JSON对象,第1张

使用json_decode在PHP中解析JSON对象

这似乎起作用:

$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文档。这使事情变得容易得多。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5011872.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存