search
HomeBackend DevelopmentPHP TutorialInterpret the role of PHP DOMDocument in parsing XML files_PHP Tutorial
Interpret the role of PHP DOMDocument in parsing XML files_PHP TutorialJul 15, 2016 pm 01:31 PM
domdocumentphpxmlbyeffectuseaboutexistdocumentofparseInterpretation

When using

Regarding the XML file used, take the XML in the article "A Brief Discussion on the Use of Simplexml for Php Xml Processing" as an example. The file name is: me.xml. The code is as follows:

PHP XML processing XML code

  1. ?xml version="1.0" encoding="utf-8"?>
  2. phplamp>
  3. post>
  4. title id=" 1">Introduction to PHP XML Processing 1 /title>
  5. details>Details 1 /details>
  6. /post >
  7. post>
  8. title id="2">PHP XML processing introduction 2 /title> ; 
  9. details>Details 2 /details>
  10. /post>
  11. post > >=
  12. "3">Introduction to PHP XML processing three /title> details> >Details 3
  13. /details
  14. > < ; /post>
  15. /phplamp
  16. > Then you need to use PHP DOMDocument to process this file and parse out any elements in the XML file. The code is as follows, with comments inside.
  17. PHP DOMDocument parsing XML file code
  18. This is just one method, PHP DOMDocument is quite powerful, and there are more parsing methods and strategies waiting for you to discover .
  19. http://www.bkjia.com/PHPjc/446191.html

www.bkjia.com

true

http: //www.bkjia.com/PHPjc/446191.html
<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php   </span></span></span></li>
<li><span>// 首先要建一个DOMDocument对象   </span></li>
<li class="alt">
<span>$</span><span class="attribute">xml</span><span> = </span><span class="attribute-value">new</span><span> DOMDocument();   </span>
</li>
<li><span> </span></li>
<li class="alt"><span>// 加载Xml文件   </span></li>
<li>
<span>$xml-</span><span class="tag">></span><span>load("me.xml");   </span>
</li>
<li class="alt"><span> </span></li>
<li><span>// 获取所有的post标签   </span></li>
<li class="alt">
<span>$</span><span class="attribute">postDom</span><span> = $xml-</span><span class="tag">><br></span><span>getElementsByTagName("post");   </span>
</li>
<li><span> </span></li>
<li class="alt"><span>// 循环遍历post标签   </span></li>
<li><span>foreach($postDom as $post){   </span></li>
<li class="alt"><span>// 获取Title标签Node   </span></li>
<li>
<span>$</span><span class="attribute">title</span><span> = $post-</span><span class="tag">><br></span><span>getElementsByTagName("title");   </span>
</li>
<li class="alt"><span> </span></li>
<li><span>/**   </span></li>
<li class="alt"><span>* 要获取Title标签的Id属性要分两部走   </span></li>
<li>
<span>* 1. 获取title中所有属性的<br>列表也就是$title-</span><span class="tag">></span><span>item(0)-</span><span class="tag">></span><span>attributes   </span>
</li>
<li class="alt"><span>* 2. 获取title中id的属性,<br>因为其在第一位所以用item(0)   </span></li>
<li><span>*   </span></li>
<li class="alt"><span>* 小提示:   </span></li>
<li>
<span>* 若取属性的值可以用item(*)-</span><span class="tag">></span><span>nodeValue   </span>
</li>
<li class="alt">
<span>* 若取属性的标签可以用item(*)-</span><span class="tag">></span><span>nodeName   </span>
</li>
<li>
<span>* 若取属性的类型可以用item(*)-</span><span class="tag">></span><span>nodeType   </span>
</li>
<li class="alt"><span>*/   </span></li>
<li>
<span>echo "Id: " . $title-</span><span class="tag">></span><span>item(0)-</span><span class="tag">><br></span><span>attributes-</span><span class="tag">></span><span>item(0)-</span><span class="tag">></span><span>nodeValue . "</span><span class="tag"><span> </span><span class="tag-name">br</span><span> </span><span class="tag">/></span><span>";   </span></span>
</li>
<li class="alt">
<span>echo "Title: " . $title-</span><span class="tag">><br></span><span>item(0)-</span><span class="tag">></span><span>nodeValue . "</span><span class="tag"><span> </span><span class="tag-name">br</span><span> </span><span class="tag">/></span><span>";   </span></span>
</li>
<li>
<span>echo "Details: " . $post-</span><span class="tag">><br></span><span>getElementsByTagName("details")-</span><span class="tag">></span><span>i<br>tem(0)-</span><span class="tag">></span><span>nodeValue . "</span><span class="tag"><span> </span><span class="tag-name">br</span><span> </span><span class="tag">/></span><span class="tag"><span> </span><span class="tag-name">br</span><span> </span><span class="tag">/></span><span>";   </span></span></span>
</li>
<li class="alt"><span>}   </span></li>
<li>
<span class="tag">?></span><span>  </span>
</li>
</ol>

TechArticle


In using the XML files used, we also use Php Xml to process the simplexml usage method. The XML in the article is as For example, the file name is: me.xml. The code is as follows: PHP XML processing XML code ?xml versi...

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

Win11系统下如何显示文件后缀?详细解读Win11系统下如何显示文件后缀?详细解读Mar 09, 2024 am 08:24 AM

Win11系统下如何显示文件后缀?详细解读在Windows11操作系统中,文件后缀是指文件名后面的点及其后面的字符,用来表示文件的类型。在默认情况下,Windows11系统会隐藏文件的后缀,这样在文件资源管理器中只能看到文件的名称而无法直观地了解文件的类型。然而,对于一些用户来说,显示文件后缀是非常必要的,因为它能帮助他们更好地辨识文件类型以及进行相关操

电脑中的cookie数据在哪个文件夹?详细解读电脑中的cookie数据在哪个文件夹?详细解读Jan 19, 2024 am 10:19 AM

随着互联网的不断发展,人们越来越离不开浏览器。而在浏览器中,大家都会或多或少用到cookie这个东西。然而,很多人并不知道cookie数据在哪个文件夹中,今天就来详细解读一下。首先,我们需要了解cookie是什么。简单来说,cookie是由浏览器存储的一段文本信息,用于保存用户在浏览器中的一些个人设置或者记录用户的历史操作等等。当用户再次打开同一个网站时,c

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php怎么将url的参数转化成数组php怎么将url的参数转化成数组Apr 21, 2022 pm 08:50 PM

转化方法:1、使用“mb_substr($url,stripos($url,"?")+1)”获取url的参数部分;2、使用“parse_str("参数部分",$arr)”将参数解析到变量中,并传入指定数组中,变量名转为键名,变量值转为键值。

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

Linux Bashrc是什么?详细解读Linux Bashrc是什么?详细解读Mar 20, 2024 pm 09:18 PM

LinuxBashrc是Linux系统中的一个配置文件,用于设置用户的Bash(BourneAgainShell)环境。Bashrc文件存储了用户登录时所需的环境变量、启动脚本等信息,可以定制化用户的Shell环境。在Linux系统中,每个用户都有一个对应的Bashrc文件,位于用户的家目录下的隐藏文件夹中。Bashrc文件的作用主要有以下几点:设置环

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.