欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php对xml的操作十分简单,

程序员文章站 2022-06-01 13:17:53
...
php对xml的操作非常简单,急急急
http://api.map.baidu.com/telematics/v3/weather?location=北京&output=xml&ak=gfPnxaaiPyNIhM7c3eZ1kmEL

这个得到XML 如何把currentCity节点的值赋给$city,循环检索weather_data下的所有节点,赋值给数组 -》$date ,给$dayPictureUrl。
------解决方案--------------------
$url = 'http://api.map.baidu.com/telematics/v3/weather?location=北京&output=xml&ak=gfPnxaaiPyNIhM7c3eZ1kmEL';
$xml = simplexml_load_file($url);

echo $city = $xml->xpath('//currentCity')[0];
foreach($xml->xpath('//weather_data') as $r) {
$date = (array)$r->date;
$dayPictureUrl = (array)$r->dayPictureUrl;
}
var_dump($city, $date, $dayPictureUrl);
北京object(SimpleXMLElement)#2 (0) {
}
array(4) {
[0]=>
string(30) "周五(今天, 实时:24℃)"
[1]=>
string(6) "周六"
[2]=>
string(6) "周日"
[3]=>
string(6) "周一"
}
array(4) {
[0]=>
string(57) "http://api.map.baidu.com/images/weather/day/leizhenyu.png"
[1]=>
string(51) "http://api.map.baidu.com/images/weather/day/yin.png"
[2]=>
string(52) "http://api.map.baidu.com/images/weather/day/qing.png"
[3]=>
string(52) "http://api.map.baidu.com/images/weather/day/qing.png"
}

php对xml的操作十分简单,

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频