首頁 >後端開發 >php教程 >php如何取取xml里的数据

php如何取取xml里的数据

WBOY
WBOY原創
2016-06-13 10:14:03836瀏覽

php怎么取取xml里的数据?

php如何取取xml里的数据

http://www.china-lz.org/
http://www.china-lz.org/
http://www.china-lz.org/
http://www.china-lz.org/


6



我想取http://www.china-lz.org/里面path,smallinfo,url
放到数组里,我用$xml = simplexml_load_file('file.xml'),foreach $xml->pic 取不出来。

------解决方案--------------------
DOM解法:

PHP code
$doc = new DomDocument();$doc->load("file.xml"); $lists=$doc->getElementsByTagName("list");foreach($lists as $list){      $path=$list->getAttribute("path");       $smallinfo=$list->getAttribute("smallinfo");      $arr[]=array('path'=>$path,'smallinfo'=>$smallinfo,'url'=>$list->nodeValue);}print_r($arr);<div class="clear">
                 
              
              
        
            </div>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn