`
yukar
  • 浏览: 127764 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

PHP操作XML的各种方法

    博客分类:
  • php
阅读更多
<?php
class mdl_xml{

    function xml2arrayValues($contents, $get_attributes=1) {
        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('UTF-8');
        xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, 0 );
        xml_parser_set_option( $parser, XML_OPTION_SKIP_WHITE, 0 );
        xml_parse_into_struct( $parser, $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;

        //Go through the tags.
        foreach($xml_values as $data) {
            unset($attributes,$value);//Remove existing values, or there will be trouble
            extract($data);//We could use the array by itself, but this cooler.

            $result = '';
            if($get_attributes) {//The second argument of the function decides this.
                $result = array();
                if(isset($value)) $result['value'] = trim($value);

                //Set the attributes too.
                if(isset($attributes)) {
                    foreach($attributes as $attr => $val) {
                        if($get_attributes == 1) $result['attr'][$attr] = trim($val); //Set all the attributes in a array called 'attr'
                        /**  :TODO: should we change the key name to '_attr'? Someone may use the tagname 'attr'. Same goes for 'value' too */
                    }
                }
            } elseif(isset($value)) {
                $result = trim($value);
            }

            //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;
                    $current = &$current[$tag];

                } else { //There was another element with the same tag name
                    if(isset($current[$tag][0])) {
                        array_push($current[$tag], $result);
                    } else {
                        $current[$tag] = array($current[$tag],$result);
                    }
                    $last = count($current[$tag]) - 1;
                    $current = &$current[$tag][$last];
                }

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

                } else { //If taken, put all things inside a list(array)
                    if((is_array($current[$tag]) and $get_attributes == 0)//If it is already an array...
                        or (isset($current[$tag][0]) and is_array($current[$tag][0]) and $get_attributes == 1)) {
                            array_push($current[$tag],$result); // ...push the new element into that array.
                        } 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
                        }
                }

            } elseif($type == 'close') { //End of tag '</tag>'
                $current = &$parent[$level-1];
            }
        }

        return($xml_array);
    }

    function xml2array($contents, $output_tag=null) {
        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('UTF-8');
        xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, 0 );
        xml_parser_set_option( $parser, XML_OPTION_SKIP_WHITE, 0 );
        xml_parse_into_struct( $parser, $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;
        $number=0;
        //Go through the tags.
        foreach($xml_values as $data) {
            unset($attributes,$value);//Remove existing values, or there will be trouble
            extract($data);//We could use the array by itself, but this cooler.
            $result = '';
            if($tag=='item') {//The second argument of the function decides this.
                if(!is_null($value)) $result = trim($value);
                    $tag=$number;
                    $number++;
            } elseif(!is_null($value)) {
               
                $result = trim($value);
            }

            //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;
                    $current = &$current[$tag];

                } else { //There was another element with the same tag name
                    if(isset($current[$tag][0])) {
                        array_push($current[$tag], $result);
                    } else {
                        $current[$tag] = array($current[$tag],$result);
                    }
                    $last = count($current[$tag]) - 1;
                    $current = &$current[$tag][$last];
                }

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

                } else { //If taken, put all things inside a list(array)
                    if((is_array($current[$tag]) and $get_attributes == 0)//If it is already an array...
                        or (isset($current[$tag][0]) and is_array($current[$tag][0]) and $get_attributes == 1)) {
                            array_push($current[$tag],$result); // ...push the new element into that array.
                        } 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
                        }
                }

            } elseif($type == 'close') { //End of tag '</tag>'
                $current = &$parent[$level-1];
            }
        }
        if($tag=='item'){
            $number=0;
        }
       
        if($output_tag){
            return($xml_array[$output_tag]);
        }else{
            return($xml_array);
        }
    }


    function getPath($xml,$tagName,$attr=null){

        $parser = xml_parser_create('UTF-8');
        xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, 0 );
        xml_parser_set_option( $parser, XML_OPTION_SKIP_WHITE, 0 );
        xml_parse_into_struct( $parser, $xml, $xml_values );
        xml_parser_free( $parser );

        $node = null;

        foreach($xml_values as $k=>$v){
            if($tagName==$v['attributes']['type']){
                if($attr){
                    if(count(array_diff_assoc($attr,$v['attributes'])) == 0){
                        $node = &$xml_values[$k];
                        break;
                    }
                }else{
                    $node = &$xml_values[$k];
                    break;
                }
            }
        }

        $path=array();

        if($node){
            for($level = $node['level'];$k>-1;$k--){
                if($xml_values[$k]['level'] == $level){
                    array_unshift($path,$xml_values[$k]);
                    $level--;
                }
            }
//      unset($xml_values);
            return $path;
        }else{
//      unset($xml_values);
            return false;
        }

    }
    
    function array2xml($data,$root='root'){
        $xml='<'.$root.'>';
        $this->_array2xml($data,$xml);
        $xml.='</'.$root.'>';
        return $xml;
    }

    function _array2xml(&$data,&$xml){
        if(is_array($data)){
            foreach($data as $k=>$v){
                if(is_numeric($k)){
                    $xml.='<item>';
                    $xml.=$this->_array2xml($v,$xml);
                    $xml.='</item>';
                }else{
                    $xml.='<'.$k.'>';
                    $xml.=$this->_array2xml($v,$xml);
                    $xml.='</'.$k.'>';
                }
            }
        }elseif(is_numeric($data)){
            $xml.=$data;
        }elseif(is_string($data)){
            $xml.='<![CDATA['.$data.']]>';
        }
    }
    
    function isnumericArray($array)
    {
        if(count($array)>0 && !empty($array[0]))
            return true;
        else
            return false;
    }

    function array_xml($keytag, $array)
    {    
        $attributes = "";
        $tagcontent = "";
        
        if(is_array($array))
        {
            foreach($array as $key=>$value)
            {
                if(in_array($key, $member_element[$keytag]) && !is_array($value)) // this is attribute
                {
                    $attributes .= "$key=\"$value\" ";
                }
                else if(is_array($value))
                {
                    if($this->isnumericArray($value)){
                        for($i=0; $i<count($value); $i++)
                        {
                            $tagcontent .= $this->array_xml($key, $value[$i]);
                        }
                    }else
                        $tagcontent .= $this->array_xml($key, $value);
                }else if($key == "value")
                    $tagcontent .= $value;
                else
                    $tagcontent .= "<{$key}>$value</{$key}>";
            }
        }
        return "<$keytag $attributes>$tagcontent</$keytag>";
    }

    function attribute_xml($array,$keytag,$element )
    {    
        $attributes = "";
        $tagcontent = "";        
        if(is_array($array)){
            foreach($array as $key=>$value){
                if(in_array($key, $element[$keytag]) && !is_array($value)){ // this is attribute
                    $attributes .= "$key=\"$value\" ";
                }else if(is_array($value)){
                    if($this->isnumericArray($value)){
                        for($i=0; $i<count($value); $i++){
                            $tagcontent .= $this->attribute_xml($value[$i],$key,$element);
                        }
                    }else
                        $tagcontent .= $this->attribute_xml($value,$key, $element);
                }else if($key == "value")
                    $tagcontent .= $value;
                else
                    $tagcontent .= "<{$key}>$value</{$key}>";
            }
        }
        return "<$keytag $attributes>$tagcontent</$keytag>";
    }
    
    function orderarray_xml($keytag, $array)
    {    
        $attributes = "";
        $tagcontent = "";
        
        if(is_array($array)){
            foreach($array as $key=>$value){
                if(in_array($key, $order_element[$keytag]) && !is_array($value)){ // this is attribute
                    $attributes .= "$key=\"$value\" ";
                }else if(is_array($value)){
                    if($this->isnumericArray($value)){
                        for($i=0; $i<count($value); $i++){
                            $tagcontent .= $this->orderarray_xml($key, $value[$i]);
                        }
                    }else
                        $tagcontent .= $this->orderarray_xml($key, $value);
                }else if($key == "value")
                    $tagcontent .= $value;
                else
                    $tagcontent .= "<{$key}>$value</{$key}>";
            }
        }
        return "<$keytag $attributes>$tagcontent</$keytag>";
    }
    
    function goodsarray_xml($keytag, $array)
    {    
        $attributes = "";
        $tagcontent = "";
        
        if(is_array($array)){
            foreach($array as $key=>$value){
                if(in_array($key, $element[$keytag]) && !is_array($value)){ // this is attribute
                    $attributes .= "$key=\"$value\" ";
                }else if(is_array($value)){
                    if($this->isnumericArray($value)){
                        for($i=0; $i<count($value); $i++){
                            $tagcontent .= $this->goodsarray_xml($key, $value[$i]);
                        }
                    }else
                        $tagcontent .= $this->goodsarray_xml($key, $value);
                }else if($key == "value")
                    $tagcontent .= $value;
                else
                    $tagcontent .= "<{$key}>$value</{$key}>";
            }
        }
        return "<$keytag $attributes>$tagcontent</$keytag>";
    }
}
?>

 

分享到:
评论

相关推荐

    php读取xml文件类

    3. **解析XML**:一旦XML文件加载成功,我们可以通过DOMDocument对象的各种方法来访问和操作XML文档的节点。例如,使用`getElementsByTagName()`或`getElementById()`获取特定的元素,使用`nodeValue`获取元素的文本...

    PHP XML操作的各种方法解析(比较详细)

    ### PHP XML操作的各种方法解析 #### 一、XML简介及特点 XML(可扩展标记语言,eXtensible Markup Language)是一种类似于HTML的标记语言,但它的用途与HTML有着本质的区别。HTML主要用于定义网页的表现形式,而...

    php操作xml的三种方法

    对于XMLReader,你可以逐节点地读取XML,这样可以处理无法一次性加载到内存的大型文件: ```php $reader = new XMLReader(); $reader-&gt;open('large.xml'); while ($reader-&gt;read()) { if ($reader-&gt;nodeType ...

    PHP操作xml类

    本文将详细介绍如何使用PHP操作XML类来实现查询、修改和删除等功能。 首先,我们有一个名为"xml.php"的类文件,这个类可能是对PHP内置的DOMDocument或SimpleXMLElement类进行了封装,以便更方便地进行XML处理。在...

    读取XML读取XML

    总结来说,读取XML文件是跨平台且跨语言的,不同编程环境都有相应的解析库和方法。理解并熟练掌握这些技术,对于处理XML数据至关重要。无论是在Web开发、数据交换还是配置文件管理中,正确读取和处理XML都是必不可少...

    PHP读取XML显示到表格

    综上所述,"PHP读取XML显示到表格"这一技术涵盖了PHP的XML解析、HTML表格生成以及可能涉及的数据处理和样式设计。在阅读了相关博客(如提供的链接)后,开发者可以进一步了解并实践这一过程,提升自己的PHP与XML应用...

    php xml转数组

    然而,有时我们可能需要将XML数据转化为更易于操作的PHP数组,以便进行进一步的处理。本文将详细介绍如何在PHP中实现XML到数组的转换,并提供相关知识点。 首先,PHP提供了内置的`DOMDocument`类和`DOMXpath`类,...

    php操作xml实例代码

    XMLReader逐块读取XML,而XMLWriter则用来创建XML文档。 6. **SAX解析**: Simple API for XML (SAX) 是一种事件驱动的解析器,适用于处理大型XML文件。PHP提供了一个SAX解析器接口,但不直接实现,需要第三方库如...

    PHP操作XML实例

    在IT行业中,XML...通过学习和实践这些PHP操作XML的实例,你可以掌握在PHP环境中处理XML文件的基本技能,从而在Web开发中更有效地交换和处理数据。继续深入研究这些工具和概念,将使你成为更出色的PHP开发者。

    PHP 读取 Android APK XML文件,无需JDK

    APK文件是基于Java的,通常需要JDK(Java Development Kit)来解析其内部结构,但在这个特定情况下,我们将学习如何利用PHP的内置功能来读取APK中的XML文件,从而避免依赖JDK。 首先,我们要了解XML文件在APK中的...

    PHP与XML格式操作

    它可以将XML文档转化为一个嵌套的对象结构,通过属性和方法直接访问和修改元素。 - SAX(Simple API for XML):SAX是一种事件驱动的解析器,适用于处理大型XML文件,因为它不需要一次性加载整个文档。PHP的`...

    php xml操作类

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

    PHP操作xml文件类

    PHP操作xml文件类,生成xml,获取xml内容成数组

    php读取XML文件

    处理XML文件时,我们可以使用PHP的内置库,如DOMDocument,它提供了一种解析和操作XML文档的方法。下面将详细介绍如何使用PHP读取和解析XML文件,以及在给定的示例中涉及的关键步骤。 首先,要加载XML文件,我们...

    PHP读取xml1

    在本文中,我们将深入探讨如何使用PHP来读取XML文件,包括使用DOM库和SAX解析器两种不同的方法。XML(eXtensible Markup Language)是一种用于存储和传输数据的标准格式,广泛应用于Web应用程序和数据交换。PHP作为...

    php从数据库中读取数据生成xml

    ### PHP从数据库中读取数据生成XML的知识点详解 #### 一、PHP连接MySQL数据库 在给定的脚本中,我们首先看到的是通过PHP连接MySQL数据库的操作。这部分代码使用了较旧的`mysql_`扩展,而不是推荐的`mysqli_`或`PDO...

    php+xml php+ajax php+mysql

    通过PHP的XML处理函数,我们可以读取、解析XML文件,提取所需数据,然后进行处理或展示。例如,使用SimpleXML库可以方便地将XML数据转换为PHP对象,便于操作。同时,PHP也可以生成XML响应,为前端提供结构化数据。 ...

    php生成xml并读取xml中的数据已经测试号

    总结,PHP生成和读取XML数据的核心在于`DOMDocument`类及其相关方法。通过创建和操作DOM对象,我们可以方便地构建和解析XML文档。在实际应用中,根据具体需求选择合适的方法进行数据操作,确保数据的准确性和有效性...

Global site tag (gtag.js) - Google Analytics