這篇文章主要介紹了PHP實現基於SimpleXML產生和解析xml的方法,結合完整執行個體形式分析了php使用SimpleXML產生及解析xml格式資料的具體操作技巧,需要的朋友可以參考下
xml就不多解釋了,php也提供了操作xml的方法,php操作xml可以有多種方式如domdocment,simplexml,xmlwriter等其中最簡單的應該是simplexml了,這次就來說說simplexml怎麼讀取和解析xml檔案或字串
1. 產生xml字串和檔案
<?php header("Content-type: text/html; charset=utf-8"); $xml=new SimpleXMLElement('<?xml version="1.0" encoding="utf-8"?><UsersInfo />'); $item=$xml->addchild("item"); $item->addchild("name","馮紹峰"); $item->addchild("age","30"); $item2=$xml->addchild("item"); $item2->addchild("name","潘瑋柏"); $item2->addchild("age","29"); $item2->addAttribute("id","02"); header("Content-type: text/xml"); echo $xml->asXml(); $xml->asXml("student.xml");?>
產生xml最重要的就是addchild,addAttribute,asXml三個方法,如果只是單純產生xml檔案的話那個header可以不要,下面是瀏覽器的顯示結果
是不是很簡單呢
2. simplexml解析xml檔案或字串
<?php header("Content-type: text/html; charset=utf-8"); $xml=simplexml_load_file("UserInfo.xml"); //通過children取得根節點下面的子項 for($i=0;$i<count($xml->children());$i++){ foreach ($xml->children()[$i] as $key => $value ) { echo "$key:$value"."<br/>"; } }?>
上面的方法適合解析xml檔案,如果是xml字串就把simplexml_load_file改為simplexml_load_string就可以了,children用於取得根節點或者子節點,取得的節點是一個數組直接遍曆必要的時候加上過濾條件就可以了,下面是解析的結果
順便把我的xml檔案貼出來
<?xml version="1.0" encoding="UTF-8"?><UsersInfo> <item> <name>潘瑋柏</name> <address>上海市浦東新區</address> <song>快樂崇拜</song> </item> <item> <name>蔡依林</name> <address>上海市徐匯區</address> <song>獨佔神話</song> </item></UsersInfo>