首页 > 作文

php实现的数组转xml案例分析

更新时间:2023-04-08 06:54:19 阅读: 评论:0

本文实例讲述了php实现的数组转xml。分享给大家供大家参考,具体如下:

0x00 需求

最近要做百度、360、神马搜索的网站sitemap,三家的格式都是xml,然而具体的细节还有有差别的。

一开始用的是dom,没有使用sax,写了几段便觉得太傻了,想到有没有数组转xml的库呢?

0x01 array2xml

搜索了一下,还真有地址为git,于是开始撸起袖子开始干。

示例如下:

the code:

$xml = new arraytoxml();print $xml->buildxml($input);

input:

$input = array('product' => array('@id' => 7,'name' => 'some string','o' => 'some-string','ean' => '','producer' => array('name' => null,'photo' => '1.png'),'stock' => 123,'trackstock' => 0,'new' => 0,'pricewithoutvat' => 1111,'price' => 1366.53,'discountpricenetto' => null,'discountprice' => null,'vatvalue' => 23,'currencysymbol' => 'pln','#description' => '','#longdescription' => '','#shortdescription' => '','category' => array('photo' => '1.png','name' => 'test3',),'staticattributes' => array('attribut范仲淹二岁而孤egroup' => array(1 => array('@name' => 'attributes group','attribute' => array(0 => array('name' => 'cond','description' => 'desc2','file' => '',),1 =>array('name' => 'third','description' => 'desc3','file' => '',),)))),'attributes' => array(),'photos' => array('photo' => array(0 => array('@mainphoto' => '1','%' => '1.png',),1 => array('@mainphoto' => '0','%' => '2.png',),2 => array('@mainphoto' => '0','%' => '3.png',)))));

output (xml data):

<?xml version="1.0" encoding="utf-8"?><data><product id="8"><description><[cdata[]]></description><longdescription><[cdata[]]></longdescription><shortdescription><[cdata[]]></shortde爬山英语作文scription><name>some string</name><o>查学籍的网站;some-string</o><ean></ean><producer><name></name><photo>1.png</photo></producer><stock>123</stock><trackstock>0</track什么是平面构成stock><new>0</new><pricewithoutvat>1111</pricewithoutvat><price>1366.53</price><discountpricenetto></discountpricenetto><discountprice></discountprice><vatvalue>23</vatvalue><currencysymbol>pln</currencysymbol><category><photo>1.png</photo><name>test3</name></category><staticattributes><attributegroup name="attributes group"><attribute><name>cond</name><description><p>黑道冷枭的赔心交易全文免费阅读desc2</p></description><file></file></attribute><attribute><name>third</name><description><p>desc3</p></description><file></file></attribute></attributegroup></staticattributes><photos><photo mainphoto="1">1.png</photo><photo mainphoto="0">2.png</photo><photo mainphoto="0">3.png</photo></photos></product></data>

可以看到,# 表示cdata,@表示属性,%代表有属性时这个元素本身的值,非常简洁。
另外数组要把重复元素提到外面作为数组的key,重复元素的各种属性是数组的值,并不需要像上面那样指定 0、1、2索引,直接用就可以了。

0x02 改进

可是发现有一个bug,根节点不能以cdata开始。

另外还缺少一个功能,cdata和属性不能同时存在。

于是阅读源码,改进了这两项,提交给了作者,并被合并了。

我额外增加了一个符号 “!” ,当cdata 和属性同时存在时,写法为:

$input = ["key" =>["@id" => 1,"!" => 2]]

<key id=”1″><![cdata[2]]></key>

ps:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:

在线xml/json互相转换工具:

在线格式化xml/在线压缩xml

xml在线压缩/格式化工具:

xml代码在线格式化美化工具:

本文发布于:2023-04-08 06:54:17,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/53f6743ed2c3fa994970c992bce4d178.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php实现的数组转xml案例分析.doc

本文 PDF 下载地址:php实现的数组转xml案例分析.pdf

标签:在线   数组   属性   元素
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图