22

有没有更优雅的方式将 SimpleXML 属性转义到数组?

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

我真的不想为了提取键/值对而遍历它。我所需要的只是将它放入一个数组中,然后将其传递。我原以为attributes()默认情况下会这样做,或者至少可以选择。但是我什至无法在任何地方找到上述解决方案,我必须自己弄清楚。我是不是让这件事复杂化了?

编辑:

在确定访问 @attributes 数组是否安全之前,我仍在使用上述脚本。

4

5 回答 5

60

更优雅的方式;它在不使用$attributes[ '@attributes' ] 的情况下为您提供相同的结果:

$attributes = current($element->attributes());
于 2012-12-03T05:24:16.893 回答
12

不要直接读取'@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;
}
于 2012-07-11T19:32:14.003 回答
4

您可以将整个 xml 文档转换为数组:

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

有关更多信息,请参阅:https ://github.com/gaarf/XML-string-to-PHP-array

于 2014-05-13T08:31:08.903 回答
1

对我来说,以下方法有效

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)
    ];
}

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

于 2018-06-13T12:15:13.800 回答
0

我想你将不得不循环。读取 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') ....
}
于 2012-07-11T19:41:20.340 回答