对
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