SimpleXML的属性数组(SimpleXML Attributes to Array)

2019-06-26 05:25发布

有没有逃脱SimpleXML的属性数组任何更优雅的方式?

$result = $xml->xpath( $xpath );
$element = $result[ 0 ];
$attributes = (array) $element->attributes();
$attributes = $attributes[ '@attributes' ];

我真的不希望有遍历它只是提取键/值对。 所有我需要的是得到它到一个数组,然后把它传递。 我还以为attributes()将在默认情况下都做到了,或者至少给出的选项。 但我不能甚至认为上述方案的任何地方,我必须明白这一点我自己。 我是在这个复杂的东西?

编辑:

我仍然使用上面的脚本,直到我肯定知道是否访问@属性数组是安全与否。

Answer 1:

不要直接读取'@attributes'属性,这是供内部使用。 无论如何, attributes()已经可以用作阵列,而无需“转换”到真实阵列。

例如:

<?php
$xml = '<xml><test><a a="b" r="x" q="v" /></test><b/></xml>';
$x = new SimpleXMLElement($xml);

$attr = $x->test[0]->a[0]->attributes();
echo $attr['a']; // "b"

如果你希望它是一个“真正的”数组,你得循环:

$attrArray = array();
$attr = $x->test[0]->a[0]->attributes();

foreach($attr as $key=>$val){
    $attrArray[(string)$key] = (string)$val;
}


Answer 2:

一个更优雅的方式; 它可以让你在不使用$属性[“@属性”]相同的结果:

$attributes = current($element->attributes());


Answer 3:

你可以将整个XML文档转换成一个数组:

$array = json_decode(json_encode((array) simplexml_load_string("<response>{$xml}</response>")), true);

更多信息请参见: https://github.com/gaarf/XML-string-to-PHP-array



Answer 4:

我想你会通过有循环。 你可以让它进入阵列一旦读取XML。

<?php
function objectsIntoArray($arrObjData, $arrSkipIndices = array())
{
$arrData = array();

// if input is object, convert into array
if (is_object($arrObjData)) {
    $arrObjData = get_object_vars($arrObjData);
}

if (is_array($arrObjData)) {
    foreach ($arrObjData as $index => $value) {
        if (is_object($value) || is_array($value)) {
            $value = objectsIntoArray($value, $arrSkipIndices); // recursive call
        }
        if (in_array($index, $arrSkipIndices)) {
            continue;
        }
        $arrData[$index] = $value;
    }
}
return $arrData;
}

$xmlStr = file_get_contents($xml_file);
$xmlObj = simplexml_load_string($xmlStr);
$arrXml = objectsIntoArray($xmlObj);

foreach($arrXml as $attr)
  foreach($attr as $key->$val){
 if($key == '@attributes') ....
}


Answer 5:

对我来说,下面的方法奏效

function xmlToArray(SimpleXMLElement $xml)
{
    $parser = function (SimpleXMLElement $xml, array $collection = []) use (&$parser) {
        $nodes = $xml->children();
        $attributes = $xml->attributes();

        if (0 !== count($attributes)) {
            foreach ($attributes as $attrName => $attrValue) {
                $collection['@attributes'][$attrName] = strval($attrValue);
            }
        }

        if (0 === $nodes->count()) {
            if($xml->attributes())
            {
                $collection['value'] = strval($xml);
            }
            else
            {
                $collection = strval($xml);
            }
            return $collection;
        }

        foreach ($nodes as $nodeName => $nodeValue) {
            if (count($nodeValue->xpath('../' . $nodeName)) < 2) {
                $collection[$nodeName] = $parser($nodeValue);
                continue;
            }

            $collection[$nodeName][] = $parser($nodeValue);
        }

        return $collection;
    };

    return [
        $xml->getName() => $parser($xml)
    ];
}

这也为我提供了所有的属性,以及,我没有任何其他的方法获得。



文章来源: SimpleXML Attributes to Array