分享
 
 
 

解析xml文档的一个简单php类

王朝php·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

//原创,可以自由使用,欢迎提出改进意见,

<?PHP

//xml中的元素

class XMLTag

{

var $parent;//父节点

var $child;//子节点

var $attribute;//本节点属性

var $data;//本节点数据

var $TagName;//本节点名称

var $depth;//本节点的深度,根节点为1

function XMLTag($tag='')

{

$this->attribute = array();

$this->child = array();

$this->depth = 0;

$this->parent = null;

$this->data = '';

$this->TagName = $tag;

}

function SetTagName($tag)

{

$this->TagName = $tag;

}

function SetParent(&$parent)

{

$this->parent = &$parent;

}

function SetAttribute($name,$value)

{

$this->attribute[$name] = $value;

}

function AppendChild(&$child)

{

$i = count($this->child);

$this->child[$i] = &$child;

}

function SetData($data)

{

$this->data= $data;

}

function GetAttr()

{

return $this->attribute;

}

function GetProperty($name)

{

return $this->attribute[$name];

}

function GetData()

{

return $this->data;

}

function GetParent()

{

return $this->parent;

}

function GetChild()

{

return $this->child;

}

function GetChildByName($name)

{

$total = count($this->child);

for($i=0;$i<$total;$i++)

{

if($this->child[$i]->attribute['name'] == $name)

{

return $this->child[$i];

}

}

return null;

}

//获取某个tag节点

function GetElementsByTagName($tag)

{

$vector = array();

$tree = &$this;

$this->_GetElementByTagName($tree,$tag,$vector);

return $vector;

}

function _GetElementByTagName($tree,$tag,&$vector)

{

if($tree->TagName == $tag) array_push($vector,$tree);

$total = count($tree->child);

for($i = 0; $i < $total;$i++)

$this->_GetElementByTagName($tree->child[$i],$tag,$vector);

}

}

//xml文档解析

class XMLDoc

{

var $parser;//xml解析指针

var $XMLTree;//生成的xml树

var $XMLFile;//将要解析的xml文档

var $XMLData;//将要解析的xml数据

var $error;//错误信息

var $NowTag;//当前指向的节点

var $TreeData;//遍历生成的xml树等到的数据

var $MaxDepth;//本树最大的深度

var $encode;//xml文档的编码方式

var $chs;//字符转换

function XMLDoc()

{

//采用默认的ISO-8859-1

$this->parser = xml_parser_create();

xml_parser_set_option($this->parser,XML_OPTION_CASE_FOLDING,0);

xml_set_object($this->parser,&$this);

xml_set_element_handler($this->parser,'_StartElement','_EndElement');

xml_set_character_data_handler($this->parser,'_CData');

$this->stack = array();

$this->XMLTree = null;

$this->NowTag = null;

$this->MaxDepth = 0;

}

function LoadFromFile($file)

{

$this->XMLFile = fopen($file,'r');

if(!$this->XMLFile)

{

$this->error = '不能打开xml文件';

return false;

}

$this->XMLData = '';

$this->TreeData = '';

return true;

}

function SetXMLData($data)

{

if($this->XMLFile) fclose($this->XMLFile);

$this->XMLData = $data;

$this->TreeData = '';

}

//给树添加一个新的节点

function AppendChild(&$child)

{

if($this->XMLTree == null)

{

$child->depth = 1;

$this->XMLTree = &$child;

$this->NowTag = &$this->XMLTree;

}

else

{

$i = count($this->NowTag->child);

$this->NowTag->child[$i] = &$child;

$child->parent = &$this->NowTag;

$child->depth = $this->NowTag->depth+1;

unset($this->NowTag);

$this->NowTag = &$child;

}

$this->MaxDepth = ($this->MaxDepth < $this->NowTag->depth)?$this->NowTag->depth:$this->MaxDepth;

}

//产生一个新的节点

function &CreateElement($tag)

{

$element = new XMLTag($tag);

return $element;

}

function _StartElement($parser,$element,$attribute)

{

$tag = new XMLTag();

$tag->TagName = $element;

$tag->attribute = $attribute;

if($this->XMLTree == null)

{

$tag->parent = null;

$tag->depth = 1;

$this->XMLTree = &$tag;

$this->NowTag = &$tag;

}

else

{

$i = count($this->NowTag->child);

$this->NowTag->child[$i] = &$tag;

$tag->parent = &$this->NowTag;

$tag->depth = $this->NowTag->depth+1;

unset($this->NowTag);

$this->NowTag = &$tag;

}

$this->MaxDepth = ($this->MaxDepth < $this->NowTag->depth)?$this->NowTag->depth:$this->MaxDepth;

}

function _CData($paraser,$data)

{

$this->NowTag->data = $data;

}

function _EndElement($parser,$element)

{

$parent = &$this->NowTag->parent;

unset($this->NowTag);

$this->NowTag = &$parent;

}

//开始解析xml文档

function parse()

{

if($this->XMLFile)

{

$this->XMLData = '';

while(!feof($this->XMLFile))

{

$this->XMLData .= fread($this->XMLFile,4096);

}

}

fclose($this->XMLFile);

if($this->XMLData)

{

//$this->JudgeEncode();

if (!xml_parse($this->parser, $this->XMLData))

{

$code = xml_get_error_code($this->parser);

$col = xml_get_current_column_number($this->parser);

$line = xml_get_current_line_number($this->parser);

$this->error = "XML error: $col at line $line:".xml_error_string($code);

return false;

}

}

xml_parser_free($this->parser);

return true;

}

//确定编码方式

function JudgeEncode()

{

$start = strpos($this->XMLData,'<?xml');

$end = strpos($this->XMLData,'>');

$str = substr($this->XMLData,$start,$end-$start);

$pos = strpos($str,'encoding');

if($pos !== false)

{

$str = substr($str,$pos);

$pos = strpos($str,'=');

&n

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有