web-dev-qa-db-ja.com

配列へのSimpleXML属性

SimpleXML属性を配列にエスケープするよりエレガントな方法はありますか?

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

キーと値のペアを抽出するためだけにループする必要はありません。私が必要とするのは、それを配列に入れて、それを渡すことだけです。私はattributes()がデフォルトでそれをするか、少なくともオプションを与えられたと思ったでしょう。しかし、私は上記の解決策をどこにも見つけることができず、自分でそれを理解しなければなりませんでした。これか何かを複雑にしていますか?

編集:

@attributes配列へのアクセスが安全であるかどうかが確実になるまで、私はまだ上記のスクリプトを使用しています。

22
mseancole

内部で使用するため、_'@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;
}
_
11
Rocket Hazmat

よりエレガントな方法。 $ attributes ['@attributes']を使用しなくても同じ結果が得られます。

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

XMLドキュメント全体を配列に変換できます。

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

詳細については、次を参照してください: https://github.com/gaarf/XML-string-to-PHP-array

3
Kus

以下の方法ではうまくいきました

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

これにより、他のメソッドでは取得できなかったすべての属性も提供されます。

0
Manik Thakur

ループする必要があると思います。 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') ....
}
0
PoX