搜索
首页php教程php手册今天看到一个很好的类-操作xml的!贴出来给大家,不知道以前贴过没有?

xml


/*
    (c) 2000 Hans Anderson Corporation.  All Rights Reserved.
    You are free to use and modify this class under the same
    guidelines found in the PHP License.

    -----------

    bugs/me:
    http://www.hansanderson.com/php/
    me@hansanderson.com
    showstv@163.com

    -----------

    Version 1.0

        - 1.0 is the first actual release of the class.  It's  
          finally what I was hoping it would be, though there
          are likely to still be some bugs in it.  This is
          a much changed version, and if you have downloaded
          a previous version, this WON'T work with your existing
          scripts!  You'll need to make some SIMPLE changes.

        - .92 fixed bug that didn't include tag attributes

          (to use attributes, add _attributes[array_index]
           to the end of the tag in question:
            $xml_html_head_body_img would become
            $xml_html_head_body_img_attributes[0],  
           for example)

           -- Thanks to Nick Winfield
              for reporting this bug.

        - .91 No Longer requires PHP4!

        - .91 now all elements are array.  Using objects has
          been discontinued.
*/

class xml_container{

    function store($k,$v) {
        $this->{$k}[] = $v;
    }
}


/* parses the information */
/*********************************
*    类定义开始
*
*********************************/
class xml{
    
    // initialize some variables
    var $current_tag=array();
    var $xml_parser;
    var $Version = 1.0;
    var $tagtracker = array();

    /* Here are the XML functions needed by expat */


    /* when expat hits an opening tag, it fires up this function */
    function startElement($parser, $name, $attrs){

        array_push($this->current_tag, $name); // add tag to the cur. tag array
        $curtag = implode("_",$this->current_tag); // piece together tag

        /* this tracks what array index we are on for this tag */

        if(isset($this->tagtracker["$curtag"])) {
            $this->tagtracker["$curtag"]++;
        }
        else{
            $this->tagtracker["$curtag"]=0;
        }

        /* if there are attributes for this tag, we set them here. */

        if(count($attrs)>0) {
            $j = $this->tagtracker["$curtag"];
            if(!$j) $j = 0;

            if(!is_object($GLOBALS[$this->identifier]["$curtag"][$j])) {
                $GLOBALS[$this->identifier]["$curtag"][$j] = new xml_container;
            }

            $GLOBALS[$this->identifier]["$curtag"][$j]->store("attributes",$attrs);
        }
    
    }// end function startElement



    /* when expat hits a closing tag, it fires up this function */
    function endElement($parser, $name) {
        $curtag = implode("_",$this->current_tag); // piece together tag
        
        // before we pop it off,
        // so we can get the correct
        // cdata

        if(!$this->tagdata["$curtag"]) {
            $popped = array_pop($this->current_tag); // or else we screw up where we are
            return; // if we have no data for the tag
        }
        else{
            $TD = $this->tagdata["$curtag"];
            unset($this->tagdata["$curtag"]);
        }

        $popped = array_pop($this->current_tag);
        // we want the tag name for
        // the tag above this, it  
        // allows us to group the
        // tags together in a more
        // intuitive way.

        if(sizeof($this->current_tag) == 0) return; // if we aren't in a tag

        $curtag = implode("_",$this->current_tag); // piece together tag
        // this time for the arrays

        $j = $this->tagtracker["$curtag"];
        
        if(!$j) $j = 0;

        if(!is_object($GLOBALS[$this->identifier]["$curtag"][$j])) {
            $GLOBALS[$this->identifier]["$curtag"][$j] = new xml_container;
        }

        $GLOBALS[$this->identifier]["$curtag"][$j]->store($name,$TD);
        #$this->tagdata["$curtag"]);
        unset($TD);
        return TRUE;
    } // end function endElement


    /* when expat finds some internal tag character data,
       it fires up this function */

    function characterData($parser, $cdata) {
        $curtag = implode("_",$this->current_tag); // piece together tag
        $this->tagdata["$curtag"] .= $cdata;
    }


    function xml($data,$identifier='xml') {   

        $this->identifier = $identifier;

        // create parser object
        $this->xml_parser = xml_parser_create();

        // set up some options and handlers
        xml_set_object($this->xml_parser,$this);
        xml_parser_set_option($this->xml_parser,XML_OPTION_CASE_FOLDING,0);
        xml_set_element_handler($this->xml_parser, "startElement", "endElement");
        xml_set_character_data_handler($this->xml_parser, "characterData");

        if (!xml_parse($this->xml_parser, $data, TRUE)) {
            sprintf("XML error: %s at line %d",
            xml_error_string(xml_get_error_code($this->xml_parser)),
            xml_get_current_line_number($this->xml_parser));
        }

        // we are done with the parser, so let's free it
        xml_parser_free($this->xml_parser);

    }//end constructor: function xml()


}//thus, we end our class xml

?>




操作方法:

require('class.xml.php');
$file = "data.xml";
$data = implode("",file($file)) or die("could not open XML input file");
$obj = new xml($data,"xml");


print $xml["hans"][0]->num_results[0];
for($i=0;$i print $xml["hans"][$i]->tag[0] . " ";
}

To print url attributes (if they exist):

print $xml["hans"][0]->attributes[0]["size"];



声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能

Atom编辑器mac版下载

Atom编辑器mac版下载

最流行的的开源编辑器

MinGW - 适用于 Windows 的极简 GNU

MinGW - 适用于 Windows 的极简 GNU

这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SecLists

SecLists

SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。