php使用simpleXML打印xml元素实现方法

前端之家收集整理的这篇文章主要介绍了php使用simpleXML打印xml元素实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP使用simpleXML打印xml元素感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

/**
 * PHP使用simpleXML打印xml元素
 *
 * @param 
 * @arrange 512-笔记网: jb51.cc
 **/
<?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/528386.html

猜你在找的PHP相关文章