首页 > 开发 > PHP > 正文

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

2024-05-04 23:33:00
字体:
来源:转载
供稿:网友

这篇文章主要介绍了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> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表