当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP array转SimpleXML用法及代码示例


很多时候需要将数据以 XML 格式存入数据库或存入文件以备后用。为了满足这个要求,需要将数据转换为 XML 并保存 XML 文件。

SimpleXML 扩展函数提供了将 XML 转换为对象的工具集。这些对象处理普通的属性选择器和数组迭代器。

范例1:


<?php
// Code to convert php array to xml document
  
// Define a function that converts array to xml.
function arrayToXml($array, $rootElement = null, $xml = null) {
    $_xml = $xml;
      
    // If there is no Root Element then insert root
    if ($_xml === null) {
        $_xml = new SimpleXMLElement($rootElement !== null ? $rootElement :'<root/>');
    }
      
    // Visit all key value pair
    foreach ($array as $k => $v) {
          
        // If there is nested array then
        if (is_array($v)) { 
              
            // Call function for nested array
            arrayToXml($v, $k, $_xml->addChild($k));
            }
              
        else {
              
            // Simply add child element. 
            $_xml->addChild($k, $v);
        }
    }
      
    return $_xml->asXML();
}
  
// Creating an array for demo
$my_array = array (
'name' => 'GFG',
'subject' => 'CS',
  
    // Creating nested array.
    'contact_info' => array (
    'city' => 'Noida',
    'state' => 'UP',
    'email' => 'feedback@geeksforgeeks.org'
    ),
);
  
// Calling arrayToxml Function and printing the result
echo arrayToXml($my_array);
?>

输出:

<?xml version="1.0"?>
<root>
    <name> GFG </name>
    <subject> CS </subject>
    <contact_info >
        <city > Noida < /city >
        <state > UP < /state >
        <email > feedback@geeksforgeeks.org </email>
    <contact_info>
<root>

上述问题可以使用 array_walk_recursive() 函数解决。此函数将数组转换为 xml 文档,其中数组的键转换为值,数组的值转换为 xml 的元素。



范例2:


<?php
// Code to convert php array to xml document
  
// Creating an array
$my_array = array (
    'a' => 'x',
    'b' => 'y',
      
    // creating nested array
    'another_array' => array (
        'c' => 'z',
    ),
);
  
// This function create a xml object with element root.
$xml = new SimpleXMLElement('<root/>');
  
// This function resursively added element
// of array to xml document
array_walk_recursive($my_array, array ($xml, 'addChild'));
  
// This function prints xml document.
print $xml->asXML();
?>

输出:

<?xml version="1.0"? >
<root >
       <x> a </x >
       <y> b </y >
       <z> c </z >
</root >

注意:如果系统生成错误类型:PHP 致命错误:未捕获错误:在 /home/6bc5567266b35ae3e76d84307e5bdc78.php:24 中找不到类“SimpleXMLElement”,则只需安装 php-xml、php-simplexml 包。




相关用法


注:本文由纯净天空筛选整理自ankit15697大神的英文原创作品 How to convert array to SimpleXML in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。