這篇文章主要介紹了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"); ?>
是不是很簡單呢
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 version="1.0" encoding="UTF-8"?> <UsersInfo> <item> <name>潘玮柏</name> <address>上海市浦东新区</address> <song>快乐崇拜</song> </item> <item> <name>蔡依林</name> <address>上海市徐汇区</address> <song>独占神话</song> </item> </UsersInfo>
相關推薦:
PHP xml解析與生成之SimpleXML使用介紹
##php
#
以上是PHP實作基於SimpleXML產生和解析xml的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!