這篇文章主要介紹了php輸出xml屬性的方法,實例分析了php操作XML文件attributes方法的使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了php輸出xml屬性的方法。具體分析如下:
這段程式碼透過一個簡單的範例示範了php如何讀取xml檔並輸出xml屬性
<?php $xml = simplexml_load_file("books.xml"); foreach($xml->book[0]->author->attributes() AS $a => $b) { echo "$a = $b <br />"; } ?>
xml 檔案內容如下
<library> <book> <title>A</title> <author gender="female">B</author> <description>C</description> </book> <book> <title>C</title> <author gender="male">D</author> <description>E</description> </book> <book> <title>F</title> <author gender="male">G</author> <description>H</description> </book> </library>
總結:以上就是本篇的全部內容,希望對大家的學習有所幫助。
相關推薦:
#以上是簡述php如何輸出xml屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!