web-dev-qa-db-ja.com

SimpleXMLオブジェクトを配列に変換する

SimpleXMLオブジェクトを配列に変換するこの機能に出会いました here

/**
 * function object2array - A simpler way to transform the result into an array 
 *   (requires json module).
 *
 * This function is part of the PHP manual.
 *
 * The PHP manual text and comments are covered by the Creative Commons 
 * Attribution 3.0 License, copyright (c) the PHP Documentation Group
 *
 * @author  Diego Araos, diego at klapmedia dot com
 * @date    2011-02-05 04:57 UTC
 * @link    http://www.php.net/manual/en/function.simplexml-load-string.php#102277
 * @license http://www.php.net/license/index.php#doc-lic
 * @license http://creativecommons.org/licenses/by/3.0/
 * @license CC-BY-3.0 <http://spdx.org/licenses/CC-BY-3.0>
 */
function object2array($object)
{
    return json_decode(json_encode($object), TRUE); 
}

したがって、XML文字列に対する私の採用は次のようになります。

function xmlstring2array($string)
{
    $xml   = simplexml_load_string($string, 'SimpleXMLElement', LIBXML_NOCDATA);

    $array = json_decode(json_encode($xml), TRUE);

    return $array;
}

それはかなりうまくいきますが、それは少しハックのように見えますか?これを行うより効率的で堅牢な方法はありますか?

SimpleXMLオブジェクトは、PHPのArrayAccessインターフェースを使用するため、配列に十分に近いことを知っていますが、多次元配列を持つ配列、つまりループとして使用するのはまだうまく機能しません。

助けてくれてありがとう

64
Abs

これは PHPマニュアルコメント で見つけました。

/**
 * function xml2array
 *
 * This function is part of the PHP manual.
 *
 * The PHP manual text and comments are covered by the Creative Commons 
 * Attribution 3.0 License, copyright (c) the PHP Documentation Group
 *
 * @author  k dot antczak at livedata dot pl
 * @date    2011-04-22 06:08 UTC
 * @link    http://www.php.net/manual/en/ref.simplexml.php#103617
 * @license http://www.php.net/license/index.php#doc-lic
 * @license http://creativecommons.org/licenses/by/3.0/
 * @license CC-BY-3.0 <http://spdx.org/licenses/CC-BY-3.0>
 */
function xml2array ( $xmlObject, $out = array () )
{
    foreach ( (array) $xmlObject as $index => $node )
        $out[$index] = ( is_object ( $node ) ) ? xml2array ( $node ) : $node;

    return $out;
}

あなたを助けることができます。ただし、XMLを配列に変換すると、存在する可能性のあるすべての属性が失われるため、XMLに戻って同じXMLを取得することはできません。

83
Arjan

Simplexmlオブジェクトの前のコードで(array)が欠落しています。

...

$xml   = simplexml_load_string($string, 'SimpleXMLElement', LIBXML_NOCDATA);

$array = json_decode(json_encode((array)$xml), TRUE);
                                 ^^^^^^^
...
55