当前位置:首页 > PHP教程 > php应用 > 列表

php使用simplexml_load_file加载XML文件并显示XML的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-17 14:20:56 浏览: 评论:0 

这篇文章主要介绍了php使用simplexml_load_file加载XML文件并显示XML的方法,实例分析了simplexml_load_file操作XML文件的技巧,非常具有实用价值,需要的朋友可以参考下。

本文实例讲述了php使用simplexml_load_file加载XML文件并显示XML的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php 
  2.   $xml = simplexml_load_file("sample.xml"); 
  3.   echo htmlspecialchars($xml->asXML()); 
  4. ?> 

sample.xml文件内容如下

  1. <library> 
  2.   <book> 
  3.    <title>A</title> 
  4.    <author gender="female">B</author> 
  5.    <description>C</description> 
  6.   </book> 
  7.   <book> 
  8.    <title>C</title> 
  9.    <author gender="male">D</author> 
  10.    <description>E</description> 
  11.   </book> 
  12.   <book> 
  13.    <title>F</title> 
  14.    <author gender="male">G</author> 
  15.    <description>H</description> 
  16.   </book> 
  17. </library>

Tags: simplexml_load_file php加载XML

分享到: