PHP封装的XML简单操作类完整实例
程序员文章站
2022-06-23 10:50:43
本文实例讲述了php封装的xml简单操作类。分享给大家供大家参考,具体如下:
xml_dom.php封装类文件:
本文实例讲述了php封装的xml简单操作类。分享给大家供大家参考,具体如下:
xml_dom.php封装类文件:
<?php /** * class xml_dom * nodetype: 1 xml_element_node(元素类型) 2 xml_attribute_node 3 xml_text_node 4 xml_cdata_section_node 5 xml_entity_reference_node 6 xml_entity_node 7 xml_processing_instruction_node 8 xml_comment_node(注释类型) 9 xml_document_node 10 xml_document_type_node 11 xml_document_fragment_node 12 xml_notation_node * php domdocument操作: 属性: attributes 存储节点的属性列表(只读) childnodes 存储节点的子节点列表(只读) datatype 返回此节点的数据类型 definition 以dtd或xml模式给出的节点的定义(只读) doctype 指定文档类型节点(只读) documentelement 返回文档的根元素(可读写) firstchild 返回当前节点的第一个子节点(只读) implementation 返回xmldomimplementation对象 lastchild 返回当前节点最后一个子节点(只读) nextsibling 返回当前节点的下一个兄弟节点(只读) nodename 返回节点的名字(只读) nodetype 返回节点的类型(只读) nodetypedvalue 存储节点值(可读写) nodevalue 返回节点的文本(可读写) ownerdocument 返回包含此节点的根文档(只读) parentnode 返回父节点(只读) parsed 返回此节点及其子节点是否已经被解析(只读) prefix 返回名称空间前缀(只读) preservewhitespace 指定是否保留空白(可读写) previoussibling 返回此节点的前一个兄弟节点(只读) text 返回此节点及其后代的文本内容(可读写) url 返回最近载入的xml文档的url(只读) xml 返回节点及其后代的xml表示(只读) 方法: appendchild 为当前节点添加一个新的子节点,放在最后的子节点后 clonenode 返回当前节点的拷贝 createattribute 创建新的属性 createcdatasection 创建包括给定数据的cdata段 createcomment 创建一个注释节点 createdocumentfragment 创建documentfragment对象 createelement 创建一个元素节点 createentityreference 创建entityreference对象 createnode 创建给定类型,名字和命名空间的节点 createporcessinginstruction 创建操作指令节点 createtextnode 创建包括给定数据的文本节点 getelementsbytagname 返回指定名字的元素集合 haschildnodes 返回当前节点是否有子节点 insertbefore 在指定节点前插入子节点 load 导入指定位置的xml文档 loadxml 导入指定字符串的xml文档 removechild 从子结点列表中删除指定的子节点 replacechild 从子节点列表中替换指定的子节点 save 把xml文件存到指定节点 selectnodes 对节点进行指定的匹配,并返回匹配节点列表 selectsinglenode 对节点进行指定的匹配,并返回第一个匹配节点 transformnode 使用指定的样式表对节点及其后代进行转换 * */ class xml_dom { protected $dblink; // xml连接 protected $dbfile; // xml文件路径 /** * xml文件 构造类 * @param $db_file xml文件 */ public function __construct($db_file) { $this->dbfile = $db_file; if(!file_exists($db_file)) { // die('未找到数据库文件'); $this->dblink = new domdocument('1.0', 'utf-8'); $root = $this->dblink->createelement('root'); $this->dblink->appendchild($root); $this->dblink->formatoutput = true; // xml文件保留缩进样式 $this->dblink->save($this->dbfile); } else { $this->dblink = new domdocument(); $this->dblink->formatoutput = true; $this->dblink->load($this->dbfile); } } /** * 遍历所有元素 * =============================================== * 标准xml文件,一个元素可能有n个属性,可用自定义键[nodevalue]获取元素值 * <?xml version="1.0" encoding="utf-8"?> * <table name="posts"> * <column name="id">1</column> * <column name="title">标题一</column> * <column name="content">详细内容一</column> * </table> * =============================================== * 简单xml文件,没有属性,键值一一对应 * <?xml version="1.0" encoding="utf-8"?> * <root> * <posts> * <id>1</id> * <title>标题一</title> * <content>详细内容一</content> * </posts> * </root> * @param $node * @return array */ function getdata($node=0){ if(!$node) { $node = $this->dblink->documentelement; } $array = array(); foreach($node->attributes as $attribute) { $key = $attribute->nodename; $val = $attribute->nodevalue; $array[$key] = $val; } if(count($array)) // 有属性,则用[nodevalue]键代表值 { $array['nodevalue'] = $node->nodevalue; } // 递归遍历所有子元素 $node_child = $node->firstchild; while($node_child) { if(xml_element_node == $node_child->nodetype) { $tagname = $node_child->tagname; $result = $this->getdata($node_child); if(isset($array[$tagname])) // 发现有重复tagname的子元素存在,所以改用数组存储重复tagname的所有子元素 { if(!is_array($array[$tagname][0])) { $tmp = $array[$tagname]; $array[$tagname] = array(); $array[$tagname][] = $tmp; } $array[$tagname][] = $result; } else { $array[$tagname] = $result; } } $node_child = $node_child->nextsibling; } if(!count($array)) // 没有子元素&没有属性=最末子元素,就返回该元素的nodevalue值 { return $node->nodevalue; } return $array; } /** * 把array数据写到xml文件(覆盖) * @param $data */ public function setdata($data,&$node=0) { $is_root = false; if(!$node) { $is_root = true; $node = $this->dblink->documentelement; // 清除原数据 $remove = array(); $node_child = $node->firstchild; while($node_child) { $remove[] = $node_child; $node_child = $node_child->nextsibling; } foreach($remove as $r) { $node->removechild($r); } } if(is_array($data)) { foreach($data as $k=>$v) { if(is_array($v)) { foreach($v as $r) { $item = $this->dblink->createelement($k); $result = $this->setdata($r,$item); $node->appendchild($result); } } else { $item = $this->dblink->createelement($k); $value = $this->dblink->createtextnode($v); $item->appendchild($value); $node->appendchild($item); } } } else { $item = $this->dblink->createtextnode($data); $node->appendchild($item); } if($is_root) { $this->dblink->save($this->dbfile); // 覆盖写入 } else { return $node; } } }
简单用法示例如下:
smp.xml文件:
<?xml version="1.0" encoding="utf-8"?> <root> <posts> <id>1</id> <title>标题一</title> <content>详细内容一</content> </posts> <posts> <id>2</id> <title>标题二</title> <content>详细内容二</content> </posts> <posts> <id>3</id> <title>标题三</title> <content>详细内容三</content> </posts> </root>
index.php文件:
include("xml_dom.php"); $xml=new xml_dom("smp.xml");//载入xml文件 $xmlarr=$xml->getdata();//读取xml文件内容 var_dump($xmlarr);
运行结果:
array(1) { ["posts"]=> array(3) { [0]=> array(3) { ["id"]=> string(1) "1" ["title"]=> string(9) "标题一" ["content"]=> string(15) "详细内容一" } [1]=> array(3) { ["id"]=> string(1) "2" ["title"]=> string(9) "标题二" ["content"]=> string(15) "详细内容二" } [2]=> array(3) { ["id"]=> string(1) "3" ["title"]=> string(9) "标题三" ["content"]=> string(15) "详细内容三" } } }
ps:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
在线xml/json互相转换工具:
在线格式化xml/在线压缩xml:
xml在线压缩/格式化工具:
xml代码在线格式化美化工具:
更多关于php相关内容感兴趣的读者可查看本站专题:《php针对xml文件操作技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php错误与异常处理方法总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。