ASCII码 ASCII码

使用php操作xml教程

发布于:2022-03-09 10:06:10  栏目:技术文档

这篇文章主要介绍了使用php操作xml教程,本篇文章通过简要的案例和文档描述,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下

php操作xml最近计划写个人的小网站,一系列原因选择了用php来写,最大的问题就是虽然php很流行,但我从来没有接触过php,看了一个多星期的基本语法后做些小练习热热身,但是期间是各种问题啊,主要是对php不熟悉,遇到一些总结一些吧。

数据

  1. <?xml version="1.0"?>
  2. <books>
  3. <book name="JavaScript: The Defiitive Guide" publisher="O'Reilly Media, Inc.">
  4. <author>David Flanagan</author>
  5. </book>
  6. <book name="PHP anf MySQL Web Development" publisher="Perason Education">
  7. <author>Luke Welling</author>
  8. <author>Laura Thomson</author>
  9. </book>
  10. <book name="HTTP: The Defiitive Guide" publisher="O'Reilly Media, Inc.">
  11. <author>David Courley</author>
  12. <author>Brian Totty</author>
  13. </book>
  14. </books>

XML几个基本概念节点:节点也就是很多程序语言中处理XML时的Node,节点是一个比较宽泛的概念,在XML中元素,属性,名字空间,注释,文本内容,处理指令,还有整个文档都属于节点,也就是说XML文档中每个独立的一小部分都是节点,是,也是,name=”XXXX”也是,标签是,甚至作者的名字David Flanagan都是一个文本节点。

元素:很多程序语言都有对XML处理,节点是一个很宽泛的概念,因为要统一API,对节点不会有过多方法,而元素也就是Element是节点的一个子集,简单讲就是这样的标签才算,一般会有很多针对元素的操作方法。

属性:这个比较好理解,在<>里面的类似XX=”OO”等东西都是属性节点

转义字符:和HTML等类似,xml也有语言占用的符号,想使用的这些特殊字符的时候需要转义

<

<

>

>

&

&

'

"

DOMDocument对象我使用的是DOMDocument对象来操作xml,感觉用起来比simpleXml科学一些,当然第一天使用php,纯属个人感觉。DOMDocument有几个常用的属性和方法。

属性 作用attributes 节点属性集合parentNode 节点父节点documentElement 文档根节点nodeName 节点的名字nodeType 节点类型nodeValue 节点值Text 节点及其子节点转换为文字方法 作用appendChild 为节点添加子节点createAttribute 创建属性节点createElement 创建元素getElementsByTagName 通过节点名获取节点集合hasChildNodes 判断节点是否有子节点insertBefore 在节点Load 通过文档路径加载xmlloadXML 加载zml字符串removeChild 删除子节点removeAttribute 删除属性节点save 保存文档加载xml123$path=$_SERVER[“DOCUMENT_ROOT”].’/books.xml’; $books=new DOMDocument(); $books->load($path);

读取/遍历节点与属性

  1. $bookElements=$books->getElementsByTagName('book');
  2. foreach($bookElements as $book){
  3. foreach ($book->attributes as $attr) {
  4. echo strtoupper($attr->nodeName).' —— '.$attr->nodeValue.'<br/>';
  5. }
  6. echo "AUTHOR: ";
  7. foreach ($book->getElementsByTagName('author') as $author) {
  8. echo $author->nodeValue.' ';
  9. }
  10. echo '<br/><br/>';
  11. }

当然对于很多属性,只想读一个,可以通过item(index)方法按索引读取echo $book->attributes->item(1)->nodeValue;还可以通过强大的xpath查询$xpath = new domxpath($books); $bookElements=$xpath->query("/books/book");

修改属性/节点

  1. foreach($bookElements as $book){
  2. foreach ($book->attributes as $attr) {
  3. #$book->setAttribute($attr->nodeName,strtoupper($attr->nodeValue));
  4. $attr->nodeValue=strtoupper($attr->nodeValue);
  5. }
  6. echo "AUTHOR: ";
  7. foreach ($book->getElementsByTagName('author') as $author) {
  8. $author->nodeValue=strtoupper($author->nodeValue);
  9. }
  10. }
  11. $books->save($path);

对属性修改可以直接访问其nodeValue改动,也可以使用setAttribute方法,改动完了别忘了使用save保存。

  1. $book->setAttribute($attr->nodeName,strtoupper($attr->nodeValue));
  2. $attr->nodeValue=strtoupper($attr->nodeValue);

添加元素/属性

  1. $newBook=$books->createElement('book'); #创建新元素
  2. $newBook->setAttribute('name','PHP Objects, Patterns, and Practice');#创建新属性,方法一
  3. $publisher=$books->createAttribute('publisher');#创建新属性,方法二
  4. $publisher->nodeValue='Apress L.P';
  5. $newBook->appendChild($publisher); #把属性添加到元素上
  6. $author=$books->createElement('author');#创建子元素
  7. $author->nodeValue='Matt Zandstra';
  8. $newBook->appendChild($author);#把子元素添加到父元素上
  9. $books->documentElement->appendChild($newBook);#添加整个节点
  10. $books->save($path);

删除属性/节点

  1. $first=$bookElements->item(0);
  2. $first->removeAttribute('publisher');
  3. $second=$bookElements->item(1);
  4. $second->parentNode->removeChild($second);
  5. $books->save($path);

相关推荐
阅读 +