search
Homephp教程php手册PHP中DOMDocument生成与解析XML格式数据

DOMDocument这个功能是我们php中自带的一个功能,下面我来介绍利用DOMDocument生成xml文档,并且也介绍DOMDocument解析xml文件的方法,有需要的朋友可参考.

数组实例代码如下:

<?php
$arr[] = array(
    &#39;name&#39; => $row[&#39;name&#39;],
    &#39;sex&#39; => $row[&#39;sex&#39;],
    &#39;age&#39; => $row[&#39;age&#39;]
);
?>

生成php,代码如下:

<?php
$doc = new DOMDocument(&#39;1.0&#39;, &#39;utf-8&#39;); // 声明版本和编码
$doc->formatOutput = true;
$r = $doc->createElement("root");
$doc->appendChild($r);
foreach ($arr as $dat) {
    $b = $doc->createElement("data");
    $name = $doc->createElement("name");
    $name->appendChild($doc->createTextNode($dat[&#39;name&#39;]));
    $b->appendChild($name);
    $sex = $doc->createElement("sex");
    $sex->appendChild($doc->createTextNode($dat[&#39;sex&#39;]));
    $b->appendChild($sex);
    $age = $doc->createElement("age");
    $age->appendChild($doc->createTextNode($dat[&#39;age&#39;]));
    $b->appendChild($age);
    $r->appendChild($b);
}
echo $doc->saveXML();
?>

这样就生成了一个xml文件了.

解析xml文件也是非常的简单了,代码如下:

<?php
header("Content-type:text/html; Charset=utf-8");
$url = "createXML.php";
$reader = new XMLReader(); //实例化XMLReader
$reader->open($url); //获取xml
$i = 1;
while ($reader->read()) {
    if ($reader->nodeType == XMLReader::TEXT) { //判断node类型
        $m = $i % 3;
        if ($m == 1) $name = $reader->value; //读取node值
        if ($m == 2) $sex = $reader->value;
        if ($m == 0) {
            $age = $reader->value;
            $arr[] = array(
                &#39;name&#39; => $name,
                &#39;sex&#39; => $sex,
                &#39;age&#39; => $age
            );
        }
        $i++;
    }
}
//print_r($arr);
?>


文章地址:

转载随意^^请带上本文地址!

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

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尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software