PHP的SimpleXML扩展提供了一个非常简单和易于使用的工具集,把XML转换为可以通过数组迭代的对象。
我们使用SimpleXML来加载XML文件如下。
/**
* 使用PHP扩展simplexml_load_file加载XML文件
*
* @param
* @arrange 512-笔记网: jb51.cc
**/
$xml = simplexml_load_file("sample.xml");
var_dump($xml);
/*** 来自编程之家 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/528422.html