`
gabrieltong
  • 浏览: 16278 次
  • 性别: Icon_minigender_1
  • 来自: 大连
最近访客 更多访客>>
社区版块
存档分类
最新评论

xml2array

阅读更多
<?php
/**
 * xml2array() will convert the given XML text to an array in the XML structure.
 * Link: http://www.bin-co.com/php/scripts/xml2array/
 * Arguments : $contents - The XML text
 *                $get_attributes - 1 or 0. If this is 1 the function will get the attributes as well as the tag values - this results in a different array structure in the return value.
 *                $priority - Can be 'tag' or 'attribute'. This will change the way the resulting array sturcture. For 'tag', the tags are given more importance.
 * Return: The parsed XML in an array form. Use print_r() to see the resulting array structure.
 * Examples: $array =  xml2array(file_get_contents('feed.xml'));
 *              $array =  xml2array(file_get_contents('feed.xml', 1, 'attribute'));
 */
function xml2array($contents, $get_attributes = 1, $priority = 'tag') {
    if (!$contents)
        return array();
        
    if (!function_exists('xml_parser_create')) {
        //print "'xml_parser_create()' function not found!";
        return array();
    }
    
    //Get the XML parser of PHP - PHP must have this module for the parser to work
    $parser = xml_parser_create('');
    xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8"); # http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss
    xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
    xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
    xml_parse_into_struct($parser, trim($contents), $xml_values);
    xml_parser_free($parser);
    
    if (!$xml_values)
        return;//Hmm...
        
    //Initializations
    $xml_array = array();
    $parents = array();
    $opened_tags = array();
    $arr = array();
    
    $current = &$xml_array; //Refference
    
    //Go through the tags.
    $repeated_tag_index = array();//Multiple tags with same name will be turned into an array
    foreach ($xml_values as $data) {
        unset($attributes, $value);//Remove existing values, or there will be trouble
        
        //This command will extract these variables into the foreach scope
        // tag(string), type(string), level(int), attributes(array).
        extract($data);//We could use the array by itself, but this cooler.
        
        $result = array();
        $attributes_data = array();
        
        if (isset($value)) {
            if ($priority == 'tag')
                $result = $value;
            else
                $result['value'] = $value; //Put the value in a assoc array if we are in the 'Attribute' mode
        }
        
        //Set the attributes too.
        if (isset($attributes) and $get_attributes) {
            foreach ($attributes as $attr=>$val) {
                if ($priority == 'tag')
                    $attributes_data[$attr] = $val;
                else
                    $result['attr'][$attr] = $val; //Set all the attributes in a array called 'attr'
            }
        }
        
        //See tag status and do the needed.
        if ($type == "open") {//The starting of the tag '<tag>'
            $parent[$level - 1] = &$current;
            if (!is_array($current) or (!in_array($tag, array_keys($current)))) { //Insert New tag
                $current[$tag] = $result;
                if ($attributes_data)
                    $current[$tag.'_attr'] = $attributes_data;
                $repeated_tag_index[$tag.'_'.$level] = 1;
                
                $current = &$current[$tag];
                
            } else { //There was another element with the same tag name
            
                if (isset($current[$tag][0])) {//If there is a 0th element it is already an array
                    $current[$tag][$repeated_tag_index[$tag.'_'.$level]] = $result;
                    $repeated_tag_index[$tag.'_'.$level]++;
                } else {//This section will make the value an array if multiple tags with the same name appear together
                    $current[$tag] = array($current[$tag], $result);//This will combine the existing item and the new item together to make an array
                    $repeated_tag_index[$tag.'_'.$level] = 2;
                    
                    if (isset($current[$tag.'_attr'])) { //The attribute of the last(0th) tag must be moved as well
                        $current[$tag]['0_attr'] = $current[$tag.'_attr'];
                        unset($current[$tag.'_attr']);
                    }
                    
                }
                $last_item_index = $repeated_tag_index[$tag.'_'.$level] - 1;
                $current = &$current[$tag][$last_item_index];
            }
            
        } elseif ($type == "complete") { //Tags that ends in 1 line '<tag />'
            //See if the key is already taken.
            if (!isset($current[$tag])) { //New Key
                $current[$tag] = $result;
                $repeated_tag_index[$tag.'_'.$level] = 1;
                if ($priority == 'tag' and $attributes_data)
                    $current[$tag.'_attr'] = $attributes_data;
                    
            } else { //If taken, put all things inside a list(array)
                if (isset($current[$tag][0]) and is_array($current[$tag])) {//If it is already an array...
                
                    // ...push the new element into that array.
                    $current[$tag][$repeated_tag_index[$tag.'_'.$level]] = $result;
                    
                    if ($priority == 'tag' and $get_attributes and $attributes_data) {
                        $current[$tag][$repeated_tag_index[$tag.'_'.$level].'_attr'] = $attributes_data;
                    }
                    $repeated_tag_index[$tag.'_'.$level]++;
                    
                } else { //If it is not an array...
                    $current[$tag] = array($current[$tag], $result); //...Make it an array using using the existing value and the new value
                    $repeated_tag_index[$tag.'_'.$level] = 1;
                    if ($priority == 'tag' and $get_attributes) {
                        if (isset($current[$tag.'_attr'])) { //The attribute of the last(0th) tag must be moved as well
                        
                            $current[$tag]['0_attr'] = $current[$tag.'_attr'];
                            unset($current[$tag.'_attr']);
                        }
                        
                        if ($attributes_data) {
                            $current[$tag][$repeated_tag_index[$tag.'_'.$level].'_attr'] = $attributes_data;
                        }
                    }
                    $repeated_tag_index[$tag.'_'.$level]++; //0 and 1 index is already taken
                }
            }
            
        } elseif ($type == 'close') { //End of tag '</tag>'
            $current = &$parent[$level - 1];
        }
    }
    
    return ($xml_array);
}
?>
 
分享到:
评论

相关推荐

    array2xml2array

    本类支持无限极数组生成xml,或者xml生成数组

    探讨:array2xml和xml2array以及xml与array的互相转化

    本文将详细介绍`array2xml`和`xml2array`这两个函数,以及如何实现XML和数组之间的互相转化。 首先,我们来看`array2xml`函数。这个函数的作用是将一个简单的PHP数组转换为XML字符串。例如,给定如下的数组: ```...

    xml2array:这会将简单的 XML 字符串转换为关联数组

    简单的 XML 到数组转换 这个包允许您轻松地将 xml 字符串转换为关联数组。 示例用法 &lt;?php // Load in the composer autoloader file require 'vendor/autoload.php' ; // Sample XML String $ xml = '&lt;?xml ...

    lalit:http提供的XML2Array类的GitHub副本

    基本代码由Lalit Patel开发,可从获得 XML2Array: : Array2XML: : 我已经通过生成器添加了额外的单元测试(所以可能测试太多了)版本记录请阅读CHANGELOG文档。 @去做在XML内添加对&lt;!-- comments --&gt;支持,...

    PHP 的Array2xml

    4. **处理命名空间**:如果需要处理XML命名空间,Array2xml类可能包含处理命名空间的方法。命名空间可以用于避免元素名称的冲突,通过`xmlns:`前缀来声明和引用。 5. **编码与字符集**:XML文档通常需要指定字符...

    php微信接口xml数据交互.zip

    $result[$child-&gt;nodeName] = xml2array($child); } else { $result[$child-&gt;nodeName] = $child-&gt;nodeValue; } } return $result; } ``` 结合以上三个步骤,你就可以实现PHP与微信接口间的完整XML数据交互了...

    Flex中Tree组件的数据源举例(xml,array,object)

    本篇将详细介绍如何为Flex中的Tree组件设置不同的数据源,包括XML、Array和Object。 首先,让我们从XML数据源开始。XML因其结构化的特性,非常适合用来表示层次数据。在Flex中,我们可以使用mx.collections....

    php xml 转json和array

    $xmlArray = json_decode(json_encode((array)$xml), TRUE); // 使用json_encode将数组转换为JSON字符串 $json = json_encode($xmlArray); echo $json; ?&gt; ``` 上述代码首先使用`simplexml_load_file()`函数加载...

    php xml操作类

    php写的一个 xml操作类 可以序列化和串行化 支持 array2xml和 xml2array

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

    首先,我们创建一个名为`Array2xml`的类,该类有两个成员变量:`$xml`用于存储生成的XML字符串。类中包含两个方法:`array2xml()`和`getXml()`。 `array2xml()`方法是核心函数,它接受一个数组作为参数,并根据数组...

    android数组资源string-array integer-array的用法

    本篇文章将深入探讨`string-array`和`integer-array`的用法,以及如何在XML中定义和使用它们。 首先,`string-array`是Android中用于存储字符串数组的资源。在Android的资源XML文件(通常位于res/values/strings....

    PHP实现XML与数据格式进行转换类实例

    * xml2array() will convert the given XML text to an array in the XML structure. * Link: http://www.bin-co.com/php/scripts/xml2array/ * Arguments : $contents - The XML text * $get_attributes - 1 or...

    php之XML转数组函数的详解

    这段代码将通过`file_get_contents`函数读取名为`feed.xml`的文件内容,并将其作为XML字符串传递给`xml2array`函数,得到一个数组表示形式的XML数据。 另一个示例展示了如何将属性也包括在数组结构中,并给予属性更...

    php实现xml转换数组的方法示例

    在示例的最后,通过调用`xml2array`函数并传入之前得到的XML对象,将XML数据转换成数组,并通过`var_dump`函数输出转换结果,以供开发者查看数据结构是否正确转换。 在处理XML数据时,我们还会遇到需要对XML进行...

    xml-to-array:轻松将有效的xml转换为php数组

    轻松地将有效的xml转换为php数组。...use Mtownsend \ XmlToArray \ XmlToArray ; $ xml = &lt;&lt;&lt;XML &lt;?xml version="1.0"?&gt; &lt;request&gt;fedex &lt;id&gt;123 &lt;tracking&gt;9205590164917312751089 XML

    PHP解析xml格式数据工具类示例

    `xml2array`方法将XML文件内容解析成数组形式,并通过`getTree`方法返回一个结构化数组,而`xml3array`则直接返回解析过程中产生的原始结构数组`$_struct`。 `parseString`函数作为内部方法,它的作用是解析XML字符...

    java XML转成LIST可以转成指定的类数组

    在Java编程中,XML(eXtensible Markup Language)是一种常用的数据交换格式,它结构清晰、易于阅读,常用于存储和传输数据。当处理XML文件时,有时我们需要将其内容转换为Java对象,如List,以便于操作和处理。本篇...

    php递归解析xml

    $arrayData = xmlToArray($xml); ``` `xmlToArray()`函数遍历每个节点,如果子节点有子元素,则继续调用自身,形成递归。最终,`$arrayData`将包含解析好的XML结构。 接下来,我们将这个数组传递给ExtJS的tree组件...

Global site tag (gtag.js) - Google Analytics