【问题标题】:What is the best php DOM 2 Array function?什么是最好的 php DOM 2 数组函数?
【发布时间】:2013-01-11 06:58:18
【问题描述】:

我想解析xml文件, 到目前为止,我发现最好的方法是使用 DOMDocument() 类。

示例 xml 字符串:

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<response>
<resData>
<contact:infData xmlns:contact="http://example.com/contact-1.0">
<contact:status s="value1"/>
<contact:status s="value2"/>
<contact:status s="value3"/>
<contact:status s="value4"/>
</contact:infData>
</resData>
</response>

我使用函数 dom2array (bellow) 来解析 dom,但它只返回 1 个元素(仅限 value4)

<?php
    function dom2array($node) {
    $res = array();
    if($node->nodeType == XML_TEXT_NODE){
       $res = $node->nodeValue;
    }else{
       if($node->hasAttributes()){
           $attributes = $node->attributes;
            if(!is_null($attributes)){
               $res['@attributes'] = array();
               foreach ($attributes as $index=>$attr) {
                   $res['@attributes'][$attr->name] = $attr->value;
               }
           }
       }
       if($node->hasChildNodes()){
           $children = $node->childNodes;
           for($i=0;$i<$children->length;$i++){
               $child = $children->item($i);
               $res[$child->nodeName] = dom2array($child);
           }
       }
    }
    return $res;
    }
?>

有没有什么办法可以解析所有的xml元素并将它们发送到一个数组中?

输出数组:

Array
(
[response] => Array
    (
        [#text] => 

        [resData] => Array
            (
                [#text] => 

                [contact:infData] => Array
                    (
                        [#text] => 

                        [contact:status] => Array
                            (
                                [@attributes] => Array
                                    (
                                        [s] => value4
                                    )

                            )

                    )

            )

    )

)

value1、value2、value3 在哪里? :( 谢谢

【问题讨论】:

标签: php xml arrays domdocument


【解决方案1】:

你可以使用这个(基于:http://php.net/manual/en/book.dom.php#93717);

function xml_to_array($root) {
    $result = array();

    if ($root->hasAttributes()) {
        $attrs = $root->attributes;
        foreach ($attrs as $attr) {
            $result['@attributes'][$attr->name] = $attr->value;
        }
    }

    if ($root->hasChildNodes()) {
        $children = $root->childNodes;
        if ($children->length == 1) {
            $child = $children->item(0);
            if ($child->nodeType == XML_TEXT_NODE) {
                $result['_value'] = $child->nodeValue;
                return count($result) == 1
                    ? $result['_value']
                    : $result;
            }
        }
        $groups = array();
        foreach ($children as $child) {
            if (!isset($result[$child->nodeName])) {
                $result[$child->nodeName] = xml_to_array($child);
            } else {
                if (!isset($groups[$child->nodeName])) {
                    $result[$child->nodeName] = array($result[$child->nodeName]);
                    $groups[$child->nodeName] = 1;
                }
                $result[$child->nodeName][] = xml_to_array($child);
            }
        }
    }

    return $result;
}

测试;

$s = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>
        <response>
            <resData foo="1">
                <contact:infData xmlns:contact="http://example.com/contact-1.0" bar="1">
                    <contact:status s="value1"/>
                    <contact:status s="value2"/>
                    <contact:status s="value3"/>
                    <contact:status s="value4"/>
                </contact:infData>
            </resData>
        </response>';

$xml = new DOMDocument();
$xml->loadXML($s);
$xmlArray = xml_to_array($xml);
print_r($xmlArray);
// print_r($xmlArray['response']['resData']['contact:infData']['contact:status'][0]['@attributes']['s']);
// foreach ($xmlArray['response']['resData']['contact:infData']['contact:status'] as $status) {
    // echo $status['@attributes']['s'] ."\n";
// }

【讨论】:

  • 非常好的功能 - 但是它在 CDATA 部分失败。我将if ($child-&gt;nodeType == XML_TEXT_NODE) 更改为if (in_array($child-&gt;nodeType,[XML_TEXT_NODE,XML_CDATA_SECTION_NODE]))
  • 我得到了一堆(不必要的?)空的#text键——sandbox.onlinephpfunctions.com/code/…
  • 要删除空的#text 键,在foreach $children 循环的开头添加以下内容:if($child-&gt;nodeType == XML_TEXT_NODE &amp;&amp; empty(trim($child-&gt;nodeValue))) continue;
猜你喜欢
  • 2012-10-16
  • 2018-04-09
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2023-03-22
  • 1970-01-01
  • 2020-01-06
  • 2010-09-07
相关资源
最近更新 更多