PHP简单实现解析xml为数组的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-09-16 10:40:39 浏览: 评论:0
这篇文章主要介绍了PHP简单实现解析xml为数组的方法,涉及php文件读取、xml解析相关操作技巧,需要的朋友可以参考下。
本文实例讲述了PHP简单实现解析xml为数组的方法,分享给大家供大家参考,具体如下:
最近想要做一个插件机制,需要用到xml,在解析xml时候需要转换为数组,特意记录一个此种解析方式
xmlDemo.xml文件:
- <?xml version="1.0" encoding="UTF-8"?>
- <main xmlns="http://www.xiaoetongo.cn" versionCode="1.0">
- <controller co="Aritles">
- <meth title="测试插件" do="aritle"/>
- </controller>
- <controller co="Ari">
- <meth title="测试插件" do="ar"/>
- <meth title="测试插件" do="a"/>
- </controller>
- <install><![CDATA[]]></install>
- <upgrade><![CDATA[]]></upgrade>
- </main>
php代码:
- <?php
- $xmls=file_get_contents("xmlDemo.xml");
- $xml =simplexml_load_string($xmls);
- $xmljson= json_encode($xml);
- $xml=json_decode($xmljson,true);
- var_dump($xml);
运行结果:
- array(4) {
- ["@attributes"]=>
- array(1) {
- ["versionCode"]=>
- string(3) "1.0"
- }
- ["controller"]=>
- array(2) {
- [0]=>
- array(2) {
- ["@attributes"]=>
- array(1) {
- ["co"]=>
- string(7) "Aritles"
- }
- ["meth"]=>
- array(1) {
- ["@attributes"]=>
- array(2) {
- ["title"]=>
- string(12) "测试插件"
- ["do"]=>
- string(6) "aritle"
- }
- }
- }
- [1]=>
- array(2) {
- ["@attributes"]=>
- array(1) {
- ["co"]=>
- string(3) "Ari"
- }
- ["meth"]=>
- array(2) {
- [0]=>
- array(1) {
- ["@attributes"]=>
- array(2) {
- ["title"]=>
- string(12) "测试插件"
- ["do"]=>
- string(2) "ar"
- }
- }
- [1]=>
- array(1) {
- ["@attributes"]=>
- array(2) {
- ["title"]=>
- string(12) "测试插件"
- ["do"]=>
- string(1) "a"
- }
- }
- }
- }
- }
- ["install"]=>
- array(0) {
- }
- ["upgrade"]=>
- array(0) {
- }
- }
Tags: 解析xml
- 上一篇:PHP实现动态压缩js与css文件的方法
- 下一篇:PHP中PDO事务处理操作示例
相关文章
- ·PHP遍历解析XML成数组实现方法(2014-08-20)
- ·php解析xml方法实例详解(2021-05-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)