Heim  >  Artikel  >  Backend-Entwicklung  >  这样的xml如何循环

这样的xml如何循环

WBOY
WBOYOriginal
2016-06-23 13:59:431010Durchsuche

SimpleXMLElement Object(    [date] => Array        (            [0] => 周五(今天, 实时:25)            [1] => 周六            [2] => 周日            [3] => 周一        )    [dayPictureUrl] => Array        (            [0] => http://api.map.baidu.com/images/weather/day/qing.png            [1] => http://api.map.baidu.com/images/weather/day/qing.png            [2] => http://api.map.baidu.com/images/weather/day/qing.png            [3] => http://api.map.baidu.com/images/weather/day/duoyun.png        )    [nightPictureUrl] => Array        (            [0] => http://api.map.baidu.com/images/weather/night/qing.png            [1] => http://api.map.baidu.com/images/weather/night/qing.png            [2] => http://api.map.baidu.com/images/weather/night/duoyun.png            [3] => http://api.map.baidu.com/images/weather/night/duoyun.png        )    [weather] => Array        (            [0] => 晴            [1] => 晴            [2] => 晴转多云            [3] => 多云        )    [wind] => Array        (            [0] => 北风3-4级            [1] => 南风微风            [2] => 南风微风            [3] => 南风微风        )    [temperature] => Array        (            [0] => 24 ~ 9            [1] => 21 ~ 10            [2] => 23 ~ 12            [3] => 22 ~ 11        ))

如何循环这样的xml数据 放到数组里   array(array('date'=>'','dayPictureUrl'=>'','nightPictureUrl'=>'','weather'=>));


回复讨论(解决方案)

foreach($xml->date as $i=>$v) {  $res[] = array(    'date' => $v,    'dayPictureUrl'=> $xml->dayPictureUrl[$i],    'nightPictureUrl'=> $xml->nightPictureUrl[$i],    'weather' => $xm->weather[$i],  );}print_r($res);

将SimpleXMLElement Object格式化? (array) SimpleXMLElement Object

谢谢大家的热心帮忙

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn