php使用simplexml_load_file加载XML文件,并显示的简单示例

前端之家收集整理的这篇文章主要介绍了php使用simplexml_load_file加载XML文件,并显示的简单示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP使用simplexml_load_file加载XML文件,并显示XML感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

/**
 * PHP使用simplexml_load_file加载XML文件,并显示XML
 *
 * @param 
 * @arrange 512-笔记网: 512Pic.com
 **/
$xml = simplexml_load_file("sample.xml");
echo htmlspecialchars($xml->asXML());

/***   来自编程之家 jb51.cc(jb51.cc)   ***/
sample.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/528424.html

猜你在找的PHP相关文章