暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

XML.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. /*
  3. * This file is part of the overtrue/wechat.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. /**
  11. * XML.php.
  12. *
  13. * @author overtrue <i@overtrue.me>
  14. * @copyright 2015 overtrue <i@overtrue.me>
  15. *
  16. * @see https://github.com/overtrue
  17. * @see http://overtrue.me
  18. */
  19. //namespace EasyWeChat\Support;
  20. namespace app\common\util;
  21. use SimpleXMLElement;
  22. /**
  23. * Class XML.
  24. */
  25. class XML
  26. {
  27. /**
  28. * XML to array.
  29. *
  30. * @param string $xml XML string
  31. *
  32. * @return array|\SimpleXMLElement
  33. */
  34. public static function parse($xml)
  35. {
  36. return self::normalize(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA | LIBXML_NOBLANKS));
  37. }
  38. /**
  39. * XML encode.
  40. *
  41. * @param mixed $data
  42. * @param string $root
  43. * @param string $item
  44. * @param string $attr
  45. * @param string $id
  46. *
  47. * @return string
  48. */
  49. public static function build(
  50. $data,
  51. $root = 'xml',
  52. $item = 'item',
  53. $attr = '',
  54. $id = 'id'
  55. ) {
  56. if (is_array($attr)) {
  57. $_attr = array();
  58. foreach ($attr as $key => $value) {
  59. $_attr[] = "{$key}=\"{$value}\"";
  60. }
  61. $attr = implode(' ', $_attr);
  62. }
  63. $attr = trim($attr);
  64. $attr = empty($attr) ? '' : " {$attr}";
  65. $xml = "<{$root}{$attr}>";
  66. $xml .= self::data2Xml($data, $item, $id);
  67. $xml .= "</{$root}>";
  68. return $xml;
  69. }
  70. /**
  71. * Build CDATA.
  72. *
  73. * @param string $string
  74. *
  75. * @return string
  76. */
  77. public static function cdata($string)
  78. {
  79. return sprintf('<![CDATA[%s]]>', $string);
  80. }
  81. /**
  82. * Object to array.
  83. *
  84. *
  85. * @param SimpleXMLElement $obj
  86. *
  87. * @return array
  88. */
  89. protected static function normalize($obj)
  90. {
  91. $result = null;
  92. if (is_object($obj)) {
  93. $obj = (array) $obj;
  94. }
  95. if (is_array($obj)) {
  96. foreach ($obj as $key => $value) {
  97. $res = self::normalize($value);
  98. if (($key === '@attributes') && ($key)) {
  99. $result = $res;
  100. } else {
  101. $result[$key] = $res;
  102. }
  103. }
  104. } else {
  105. $result = $obj;
  106. }
  107. return $result;
  108. }
  109. /**
  110. * Array to XML.
  111. *
  112. * @param array $data
  113. * @param string $item
  114. * @param string $id
  115. *
  116. * @return string
  117. */
  118. protected static function data2Xml($data, $item = 'item', $id = 'id')
  119. {
  120. $xml = $attr = '';
  121. foreach ($data as $key => $val) {
  122. if (is_numeric($key)) {
  123. $id && $attr = " {$id}=\"{$key}\"";
  124. $key = $item;
  125. }
  126. $xml .= "<{$key}{$attr}>";
  127. if ((is_array($val) || is_object($val))) {
  128. $xml .= self::data2Xml((array) $val, $item, $id);
  129. } else {
  130. $xml .= is_numeric($val) ? $val : self::cdata($val);
  131. }
  132. $xml .= "</{$key}>";
  133. }
  134. return $xml;
  135. }
  136. }