《PHP教程:php使用simplexml_load_file加载XML文件并显示XML的方法》要点:
本文介绍了PHP教程:php使用simplexml_load_file加载XML文件并显示XML的方法,希望对您有用。如果有疑问,可以联系我们。
PHP实例本文实例讲述了php使用simplexml_load_file加载XML文件并显示XML的办法.分享给大家供大家参考.具体实现办法如下:
PHP实例
<?php
$xml = simplexml_load_file("sample.xml");
echo htmlspecialchars($xml->asXML());
?>
PHP实例sample.xml文件内容如下
PHP实例
<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实例希望本文所述对大家的php程序设计有所赞助.
欢迎参与《PHP教程:php使用simplexml_load_file加载XML文件并显示XML的方法》讨论,分享您的想法,维易PHP学院为您提供专业教程。