这篇文章主要为大家详细介绍了PHP 扩展simplexml_load_file加载XML文件的简单示例,具有一定的参考价值,可以用来参考一下。
对使用PHP扩展simplexml_load_file加载XML文件感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* 使用PHP扩展simplexml_load_file加载XML文件
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
$xml = simplexml_load_file("sample.xml");
var_dump($xml);
/*** 来自四海网(www.q1010.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>
本文来自:http://www.q1010.com/173/957-0.html
注:关于PHP 扩展simplexml_load_file加载XML文件的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:simplexml_load_file
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。