本文实例讲述了PHP封装的XML简单操作类。分享给大家供大家参考,具体如下:
xml_dom.php封装类文件:
<"1.0" encoding="utf-8""posts"> * <column name="id">1</column> * <column name="title">标题一</column> * <column name="content">详细内容一</column> * </table> * =============================================== * 简单xml文件,没有属性,键值一一对应 * <"1.0" encoding="utf-8""htmlcode"><"1.0" encoding="utf-8""htmlcode">include("xml_dom.php"); $xml=new xml_dom("smp.xml");//载入xml文件 $xmlarr=$xml->getData();//读取xml文件内容 var_dump($xmlarr);运行结果:
array(1) { ["posts"]=> array(3) { [0]=> array(3) { ["id"]=> string(1) "1" ["title"]=> string(9) "标题一" ["content"]=> string(15) "详细内容一" } [1]=> array(3) { ["id"]=> string(1) "2" ["title"]=> string(9) "标题二" ["content"]=> string(15) "详细内容二" } [2]=> array(3) { ["id"]=> string(1) "3" ["title"]=> string(9) "标题三" ["content"]=> string(15) "详细内容三" } } }PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson在线格式化XML/在线压缩XML:
http://tools.jb51.net/code/xmlformatXML在线压缩/格式化工具:
http://tools.jb51.net/code/xml_format_compressXML代码在线格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP针对XML文件操作技巧总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《PHP错误与异常处理方法总结》、《PHP基本语法入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
标签:
PHP,封装,XML,操作类
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“PHP封装的XML简单操作类完整实例”评论...