Home  >  Article  >  Backend Development  >  有什么php框架对xml支持比较好的?该如何解决

有什么php框架对xml支持比较好的?该如何解决

WBOY
WBOYOriginal
2016-06-13 12:26:59817browse

有什么php框架对xml支持比较好的?
最近做一个项目,数据存储是多个xml格式的文件,要读写,查询等操作!问一下各位php达人,有没有什么好的php框架?
------解决思路----------------------
php 提供了 3 套 XML 解析函数(类)还不够你用的吗?
------解决思路----------------------
自己写个xml操作类
------解决思路----------------------
php 核心就提供了很多函数和扩展可以很好的读写XML。
------解决思路----------------------
SimpleXML 扩展提供了一个非常简单和易于使用的工具集,能将 XML 转换成一个带有一般属性选择器和数组迭代器的对象。

XML 转 数组

<br /><?php<br />if ( file_exists ( 'test.xml' )) {<br />     $xml  =  simplexml_load_file ( 'test.xml' );<br />      print_r ( $xml );<br />} else {<br />    exit( 'Failed to open test.xml.' );<br />}<br />?> <br />

------解决思路----------------------
感觉还是SimpleXML比较好用

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn