PHP中的类-操作XML(1)

<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

 
http://www.hansanderson.com/ me

<?php

/*
   (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

   -----------

   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 <nick@wirestation.co.uk>
             for reporting this bug.

       - .91 No Longer requires PHP4!

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

   -----------

   What class.xml.php is:

   A very, very easy to use XML parser class. It uses PHP's XML functions
   for you, returning one array that has all the tag information.  The only  
   hard part is figuring out the syntax of the tags!

   -----------

   Sample use:

   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<sizeof($xml["hans"]);$i++) {
    print $xml["hans"][$i]->tag[0] . " ";
   }

   To print url attributes (if they exist):

   print $xml["hans"][0]->attributes[0]["size"]; # where "size" was an attr name

   (that's it! slick, huh?)
   -----------

   Two ways to call xml class:  

       $xml = new xml($data);
       - or -
       $xml = new xml($data,"jellyfish");

   The second argument (jellyfish) is optional.  Default is 'xml'.
   All the second argument does is give you a chance to name the array
   that is returned something besides "xml" (in case you are already using
   that name).  Normal PHP variable name rules apply.

   ----------

   Explanation of xml class:

   This class takes valid XML data as an argument and  
   returns all the information in a complex but loopable array.

   Here's how it works:

       Data:

           <html>
            <head>
             <title>Hans Anderson's XML Class</title>
            </head>
            <body>
            </body>
           </html>

       Run the data through my class, then access the title like this:
       $xml["html_head"][0]->title[0];

       Or, loop through them:
       for($i=0;$i<sizeof($xml["html_head"]);$i++) {
           print $xml["html_head"][$i]->title[0] . " ";
       }

       Yes, the variable names *are* long and messy, but it's
       the best way to create the tree, IMO.

Here is a complex explanation I sent to one class.xml.php user:

---------

> Now I've run into another problem:
>
> <STORY TIMESTAMP="2000-12-15T20:08:00,0">
> <SECTION>Markets</SECTION>
> <BYLINE>By <BYLINE_AUTHOR ID="378">Aaron L. Task</BYLINE_AUTHOR><BR/>Senior
> Writer</BYLINE>
> </STORY>
>
> How do I get BYLINE_AUTHOR?

print $xml["STORY_BYLINE"][0]->BYLINE_AUTHOR[0];

> And just a little question: Is there an easy way to get TIMESTAMP?

print $xml["STORY"][0]->attributes[0]["TIMESTAMP"];

This is confusing, I know, but it's the only way I could really do
this.  Here's the rundown:

The $xml part is an array -- an array of arrays.  The first array is the

时间: 2024-11-03 22:33:40

PHP中的类-操作XML(1)的相关文章

限制程序中某类操作的执行次数的算法设计及C代码实现

需求描述 编写程序实现限制程序中某类操作的执行次数的需求.为了便于说明,要求程序每天创建一个与上一天不同的文件目录.如果欲创建的文件目录已存在,则不用再创建.文件目录的命名格式为:FileDir_YYYYMMDD,如:FileDir_20160830. 程序流程 对于此类需求,最关键的问题是要设定一个标识来限制操作的执行次数.也就是说,当程序执行完一次操作之后,要有机制来限制它执行第二次操作. 因为本需求要求每天执行一次操作,所有我们自然想到了用日期来限制程序的执行次数.我们可以用一个全局时间变

sql server中使用T-Sql操作Xml数据

一.前言 SQLServer 2005 引入了一种称为 XML 的本机数据类型.用户可以创建这样的表,它在关系列之外还有一个或多个 XML 类型的列:此外,还允许带有变量和参数.为了更好地支持 XML 模型特征(例如文档顺序和递归结构),XML 值以内部格式存储为大型二进制对象 (BLOB). 用户将一个XML数据存入数据库的时候,可以使用这个XML的字符串,SQL Server会自动的将这个字符串转化为XML类型,并存储到数据库中. 随着SQL Server 对XML字段的支持,相应的,T-S

java中四种操作xml方式的比较

xml|比较   1. 介绍 1)DOM(JAXP Crimson解析器)         DOM是用与平台和语言无关的方式表示XML文档的官方W3C标准.DOM是以层次结构组织的节点或信息片断的集合.这个层次结构允许开发人员在树中寻找特定信息.分析该结构通常需要加载整个文档和构造层次结构,然后才能做任何工作.由于它是基于信息层次的,因而DOM被认为是基于树或基于对象的.DOM以及广义的基于树的处理具有几个优点.首先,由于树在内存中是持久的,因此可以修改它以便应用程序能对数据和结构作出更改.它还

C#中TreeView类操作全攻略(一)

treeview|攻略 using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using com.prm.client.tools;using System.Data.OracleClient;using com.prm.client.common;using com.prm.client

今天看到一个很好的类-操作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@hans

C#中TreeView类操作全攻略(二)

treeview|攻略 using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using com.prm.client.tools;using System.Data.OracleClient;//using com.prm.client.common; namespace com.prm

winfor中在treeview操作XML节点添加删除操作问题 求助!!!

问题描述 //删除节点按钮privatevoidbutton3_Click(objectsender,EventArgse){try{TreeNodeactiveNode=treeView1.SelectedNode;if(activeNode==null){return;}#region删除当前选择的节点XmlNodexmlNode=activeNode.TagasXmlNode;XmlNodeparentNode=xmlNode.ParentNode;if(parentNode==null)

C#中TreeView类操作全攻略(三)

treeview|攻略 using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using com.prm.client.tools;using System.Data.OracleClient;//using com.prm.client.common; namespace com.prm.client.forms{ ///

C#操作XML增删改查

原文:C#操作XML增删改查 XML文件是一种常用的文件格式,不管是B/S还是C/S都随处可见XML的身影.Xml是Internet环境中跨平台的,依赖于内容的技术,是当前处理结构化文档信息的有力工具.XML是一种简单的数据存储语言,使用一系列简单的标记描述数据,而这些标记可以用方便的方式建立,虽然XML占用的空间比二进制数据要占用更多的空间,但XML极其简单易于掌握和使用.微软也提供了一系列类库来倒帮助我们在应用程序中存储XML文件.     "在程序中访问进而操作XML文件一般有两种模型,分

JDOM操作XML文档

  解析 xml文档的接口技术有很多 ,DOM  JDOM  SAX  ..其中JDOM技术是最简单的操作,代码操作比DOM  SAX少很多 . 关于这三种技术的介绍可以去网上查询一下. SAX是基于事件响应的 (没用过) . DOM是java官方的标准,我们在操作xml的时候其实是在内存中构建了一棵文档树,对于较小的xml文档可以使用dom处理,但是对于数据量比较大的XML文档,DOM比较耗费内存. JDOM是一个开源的项目,融合了DOM和SAX技术 ,轻量级的API可以方便的操作XML文档,