首页 | 资讯动态 | linux基础 | 系统管理 | 网络管理 | 编程开发 | linux数据库 | 服务器技术 | linux相关 | linux认证 | 嵌入式 | 下载中心 | 专题 | linux招聘 | 镜像站
OKLinux中文技术站
·设为首页
·加入收藏
·联系我们
系统管理: 中文环境 系统管理 桌面应用 内核技术 | Linux基础: 基础入门 安装配置 常用命令 经验技巧 软件应用 | Linux数据库: Mysql Postgre Oracle DB2 Sybase other
网络管理: 网络安全 网络应用 Linux服务器 环境配置 黑客安全 | 编程开发: PHP CC++ Python Perl Shell 嵌入式开发 java jsp | PHP技术: PHP基础 PHP技巧 PHP应用 PHP文摘
Linux资讯 Linux招聘 Linux专题 Apache | Linux相关: 硬件相关 Linux解决方案 Linux认证 企业应用 其它Unix | 相关下载: 资料下载 参考手册 开发工具 服务器类 软路由 其它
 技术搜索:
会员中心 注册会员 高级搜索  
  → 当前位置:首页>编程开发>php>php技巧>正文

一个操作xml的类

http://www.oklinux.cn  2003-05-01  来源: 互联网    会员收藏  游客收藏  【 】 

<?
/*
(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/
[email protected]
[email protected]

-----------

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

To print url attributes (if they exist):

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



上一篇:一个翻页类   下一篇:一个饼状图或柱状图php生成类或例子


收藏于收藏夹】 【评论】 【推荐】 【打印】 【关闭
相关文档
·一个饼状图或柱状图php生成类或例子
·一个翻页类
·一个比较完善的购物车类
·一个访问ACCESS的类
·一个PHP类
·一个分页导航类
·新作模板处理类
·一个分页导航类示例
·一个改进的UBB类
·无限分类&树型论坛的实现
·贴个购物车的类,只用了一个Session
·一个好用的UBB类
·一个简单编程思想在php与java中的实现比较:日期类
·搜索和替换文件或目录的一个好类
·数字转换为中文的类
·一个简单的IMAP类和应用
发表评论
密码: 匿名评论
评论内容:

(不超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规)
 
  最新文档
·PHP之COOKIE支持详解
·PHP中的类
·php中文处理函数
·通过ODBC连接的SQL
·两个日期类
·面向对象编程
·面向过程与面向对象的简单比较
·判断WebSERVER类型
·屏蔽浏览器缓存另类方法
·日历类
·如何文档化你的PHP类
·使用PHP4中的 IntegratedTemplate类实
  阅读排行
·PHP之COOKIE支持详解
·PHP 应用程序配置模式
·用 PHP 读取文件的正确方法
·利用单元测试对PHP 代码进行检查
·五个常见 PHP 数据库问题
·用 PHP V4 开发的代码迁移到 PHP V5
·使用PHP 快速生成Flash 动画
·Linux系统下PHP服务器安全配置技巧
·Linux操作系统下的多线程编程详细解析
·用PHP读取和编写XML DOM
·用Pear加速PHP程序开发
·如何用PHP调用自己编写的COM组件?
·PHP面向对象编程快速入门
·为 Linux 和 Windows 安装 PHP 和 Orac
·终于实现简体转繁体,繁体到转体
网摘收藏: