当前位置:首页 > PHP教程 > php数组 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-23 10:38:35 浏览: 评论:0 

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

0x00 需求

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

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

0x01 array2xml

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

示例如下:

THE CODE:

$xml = new ArrayToXML();

print $xml->buildXML($input);

INPUT:

  1. $input = array('product' => array
  2. '@id' => 7, 
  3. 'name' => 'some string'
  4. 'seo' => 'some-string'
  5. 'ean' => ''
  6. 'producer' => array
  7. 'name' => null, 
  8. 'photo' => '1.png' 
  9. ), 
  10. 'stock' => 123, 
  11. 'trackstock' => 0, 
  12. 'new' => 0, 
  13. 'pricewithoutvat' => 1111, 
  14. 'price' => 1366.53, 
  15. 'discountpricenetto' => null, 
  16. 'discountprice' => null, 
  17. 'vatvalue' => 23, 
  18. 'currencysymbol' => 'PLN'
  19. '#description' => ''
  20. '#longdescription' => ''
  21. '#shortdescription' => ''
  22. 'category' => array
  23. 'photo' => '1.png'
  24. 'name' => 'test3'
  25. ), 
  26. 'staticattributes' => array
  27. 'attributegroup' => array
  28. 1 => array
  29. '@name' => 'attributes group'
  30. 'attribute' => array
  31. 0 => array
  32. 'name' => 'second'
  33. 'description' => 'desc2'
  34. 'file' => ''
  35. ), 
  36. 1 => 
  37. array
  38. 'name' => 'third'
  39. 'description' => 'desc3'
  40. 'file' => ''
  41. ), 
  42. ), 
  43. 'attributes' => array(), 
  44. 'photos' => array
  45. 'photo' => array
  46. 0 => array
  47. '@mainphoto' => '1'
  48. '%' => '1.png'
  49. ), 
  50. 1 => array
  51. '@mainphoto' => '0'
  52. '%' => '2.png'
  53. ), 
  54. 2 => array
  55. '@mainphoto' => '0'
  56. '%' => '3.png'
  57. )); 

OUTPUT (XML data):

  1. <?xml version="1.0" encoding="UTF-8"?> 
  2. <data> 
  3. <product id="8"
  4. <description><[CDATA[]]></description> 
  5. <longdescription><[CDATA[]]></longdescription> 
  6. <shortdescription><[CDATA[]]></shortdescription> 
  7. <name>some string</name> 
  8. <seo>some-string</seo> 
  9. <ean></ean> 
  10. <producer> 
  11. <name></name> 
  12. <photo>1.png</photo> 
  13. </producer> 
  14. <stock>123</stock> 
  15. <trackstock>0</trackstock> 
  16. <new>0</new
  17. <pricewithoutvat>1111</pricewithoutvat> 
  18. <price>1366.53</price> 
  19. <discountpricenetto></discountpricenetto> 
  20. <discountprice></discountprice> 
  21. <vatvalue>23</vatvalue> 
  22. <currencysymbol>PLN</currencysymbol> 
  23. <category> 
  24. <photo>1.png</photo> 
  25. <name>test3</name> 
  26. </category> 
  27. <staticattributes> 
  28. <attributegroup name="attributes group"
  29. <attribute> 
  30. <name>second</name> 
  31. <description><p>desc2</p></description> 
  32. <file></file> 
  33. </attribute> 
  34. <attribute> 
  35. <name>third</name> 
  36. <description><p>desc3</p></description> 
  37. <file></file> 
  38. </attribute> 
  39. </attributegroup> 
  40. </staticattributes> 
  41. <photos> 
  42. <photo mainphoto="1">1.png</photo> 
  43. <photo mainphoto="0">2.png</photo> 
  44. <photo mainphoto="0">3.png</photo> 
  45. </photos> 
  46. </product> 
  47. </data> 

可以看到,# 表示CDATA,@表示属性,%代表有属性时这个元素本身的值,非常简洁。

另外数组要把重复元素提到外面作为数组的key,重复元素的各种属性是数组的值,并不需要像上面那样指定 0、1、2索引,直接用就可以了。

0x02 改进

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

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

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

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

  1. $input = [ 
  2. "key" =>[ 
  3. "@id" => 1, 
  4. "!" => 2 
  5. <key id="1"><![CDATA[2]]></key>

Tags: php数组转xml

分享到:

相关文章