openlss/lib-array2xml

Array2XML 转换库归功于 lalit.org

1.0.0 2019-03-29 20:06 UTC

This package is not auto-updated.

Last update: 2024-09-15 00:19:24 UTC


README

Array2XML 转换库归功于 lalit.org

使用方法

//create XML
$xml = Array2XML::createXML('root_node_name', $php_array);
echo $xml->saveXML();

//create Array
$array = XML2Array::createArray($xml);
print_r($array);

Array2XML

@xml 示例

// Build the array that should be transformed into a XML object.
$array = [
    'title' => 'A title',
    'body' => [
        '@xml' => '<html><body><p>The content for the news item</p></body></html>',
    ],
];

// Use the Array2XML object to transform it.
$xml = Array2XML::createXML('news', $array);
echo $xml->saveXML();

这将导致以下结果。

<?xml version="1.0" encoding="UTF-8"?>
<news>
  <title>A title</title>
  <body>
    <html>
      <body>
        <p>The content for the news item</p>
      </body>
    </html>
  </body>
</news>

参考

更完整的参考信息可以在以下链接找到:http://www.lalit.org/lab/convert-xml-to-array-in-php-xml2array/ http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/

变更日志

1.0.0

  • 添加在处理期间检查状态的回调功能。

0.5.1

  • 修复当传递的数组为空时的致命错误,由 pull request #6 修复。

0.5.0

  • 为 XML2Array::createArray 添加第二个参数以用于 DOMDocument::load,例如:LIBXML_NOCDATA
  • 将方法可见性从私有更改为受保护以进行覆盖。
  • 合并 pull request #5 添加子 XML
  • 合并 pull request #4 更改方法可见性和为 load 添加第二个参数。

0.1.0

  • 初始发布