如何从php数组中的SimpleXMLElement获取数据

时间:2017-01-06 08:07:46

标签: php xml-parsing

SimpleXMLElement Object ( [@attributes] => Array ( [version] => 1.1 [encoding] => UTF-8 ) [forgotPassword] => SimpleXMLElement Object ( [message] => User is not found. [status] => error ) ) 

1 个答案:

答案 0 :(得分:0)

我在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;
}

你应该试试。

相关问题