> php教程 > php手册 > 본문

php中SimpleXMLElement 对象转换为数组

WBOY
풀어 주다: 2016-05-25 16:42:07
원래의
1067명이 탐색했습니다.

PHP 提供了 simplexml_load_string 方法用来解析 XML 格式的字符串,并返回 SimpleXMLElement 对象,不过一般数组是更为适用的,所以也会有转换为普通数组的需求,这个方法测试完全奏效,支持 SimpleXMLElement 对象多层嵌套的情况.

提供两个参数,第一个参数为 SimpleXMLElement 对象,第二个参数为布尔值,控制最终返回值是否包含根节点,代码如下:

<?php
function xmlToArr($xml, $root = true) {
    if (!$xml->children()) {
        return (string)$xml;
    }
    $array = array();
    foreach ($xml->children() as $element => $node) {
        $totalElement = count($xml->{$element});
        if (!isset($array[$element])) {
            $array[$element] = "";
        }
        // Has attributes
        if ($attributes = $node->attributes()) {
            $data = array(
                &#39;attributes&#39; => array() ,
                &#39;value&#39; => (count($node) > 0) ? $this->__xmlToArr($node, false) : (string)$node
            );
            foreach ($attributes as $attr => $value) {
                $data[&#39;attributes&#39;][$attr] = (string)$value;
            }
            if ($totalElement > 1) {
                $array[$element][] = $data;
            } else {
                $array[$element] = $data;
            }
            // Just a value
            
        } else {
            if ($totalElement > 1) {
                $array[$element][] = $this->__xmlToArr($node, false);
            } else {
                $array[$element] = $this->__xmlToArr($node, false);
            }
        }
    }
    if ($root) {
        return array(
            $xml->getName() => $array
        );
    } else {
        return $array;
    }
}
?>
로그인 후 복사


文章链接:

随便收藏,请保留本文地址!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!