将 SimpleXML 对象转换为数组 [已关闭]
我在这里遇到了将SimpleXML对象转换为数组的函数:
/**
* 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 接口,但它仍然不能很好地用作具有多维数组(即循环)的数组。
感谢大家的任何帮助