Home  >  Article  >  Backend Development  >  php中Array2xml类实现数组转化成XML实例_php技巧

php中Array2xml类实现数组转化成XML实例_php技巧

WBOY
WBOYOriginal
2016-05-16 20:28:58954browse

本文实例讲述了php中Array2xml类实现数组转化成XML的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:

class Array2xml
{
    var $xml;
    function array2xml($array,$encoding='utf-8') {
        $this->xml='';
        $this->xml.=$this->_array2xml($array);
    }
    function getXml() {
        return $this->xml;
    }
    function _array2xml($array)
    {
        $xml='';
        foreach($array as $key=>$val){
            if(is_numeric($key)){
                $key="item id=\"$key\"";
            }else{
                //去掉空格,只取空格之前文字为key
                list($key,)=explode(' ',$key);
            }
            $xml.="";
            $xml.=is_array($val)?$this->_array2xml($val):$val;
            //去掉空格,只取空格之前文字为key
            list($key,)=explode(' ',$key);
            $xml.="$key>";
        }
        return $xml;
    }
}

希望本文所述对大家的PHP程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn