下面的代码通过一个简单的范例演示了PHP如何读取xml文件并输出xml属性
/**
* PHP输出xml属性
*
* @param
* @arrange 512-笔记网: 512Pic.com
**/
<?PHP
$xml = simplexml_load_file("books.xml");
foreach($xml->book[0]->author->attributes() AS $a => $b) {
echo "$a = $b <br />";
}
?>
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
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>
原文链接:https://www.f2er.com/php/528418.html