php使用simplexml_load_file加载XML文件,并显示的解决办法
内容摘要
这篇文章主要为大家详细介绍了php使用simplexml_load_file加载XML文件,并显示的简单示例,具有一定的参考价值,可以用来参考一下。
对php使用simplexml_load_file加载XML文件,并
对php使用simplexml_load_file加载XML文件,并
文章正文
这篇文章主要为大家详细介绍了php使用simplexml_load_file加载XML文件,并显示的简单示例,具有一定的参考价值,可以用来参考一下。
对php使用simplexml_load_file加载XML文件,并显示XML对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* php使用simplexml_load_file加载XML文件,并显示XML
*
* @param
* @arrange 512-笔记网: 512Pic.com
**/
$xml = simplexml_load_file("sample.xml");
echo htmlspecialchars($xml->asXML());
/*** 来自php教程(www.idcnote.com) ***/
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>
注:关于php使用simplexml_load_file加载XML文件,并显示的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释