本文實例講述了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程序設計有所幫助。