一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

用PHP編寫和讀取XML的幾種方式

一.使用DOM生成和讀取XML文件
實(shí)例一:
復(fù)制代碼 代碼如下:
<?php
//Creates XML string and XML document using the DOM
$dom = new DomDocument('1.0');
//add root - <books>
$books = $dom->appendChild($dom->createElement_x_x ('books'));
//add <book> element to <books>
$book = $books->appendChild($dom->createElement_x_x ('book'));
//add <title> element to <book>
$title = $book->appendChild($dom->createElement_x_x ('title'));
//add <title> text node element to <title>
$title->appendChild($dom->createTextNode('Great American Novel'));
//generate xml
$dom->formatOutput = true; // set the formatOutput attribute of domDocument to true
//save XML as string or file
$test1 = $dom->saveXML(); // put string in test1
$dom -> save('test1.xml'); // save as file
?>

實(shí)例二:
復(fù)制代碼 代碼如下:
$aa = "111";
$xmlstr = <<<XML
<?xml version='1.0'?>
<document>
<title>{$aa}</title>
<from>Joe</from>
<to>Jane</to>
<body>
I know that's the answer -- but what's the question?
</body>
</document>
XML;
$dom = new domDocument;
$dom->loadXML($xmlstr);
$test1 = $dom->saveXML();
$dom->save('test1.xml');


實(shí)例三:
test1.xml:
復(fù)制代碼 代碼如下:
<?xml version="1.0"?>
<books>
<book>
<author>Jack Herrington</author>
<title>php Hacks</title>
<publisher>O'Reilly</publisher>
</book>
<book>
<author>Jack Herrington</author>
<title>Podcasting Hacks</title>
<publisher>O'Reilly</publisher>
</book>
</books>


example.php:
復(fù)制代碼 代碼如下:
$doc = new DOMDocument();
$doc->load('test1.xml');
$books = $doc->getElementsByTagName("book");
foreach($books as $book){
$authors = $book->getElementsByTagName("author");
$author = $authors->item(0)->nodeValue;
$publishers = $book->getElementsByTagName( "publisher" );
$publisher = $publishers->item(0)->nodeValue;
$titles = $book->getElementsByTagName( "title" );
$title = $titles->item(0)->nodeValue;
echo "$title - $author - $publisher/n";
}


二.使用simple生成和讀取xml文件
實(shí)例一:
復(fù)制代碼 代碼如下:
<?
$xmlstr = <<<XML
<?xml version='1.0' standalone='yes'?>
<books>
<book>
<title>Great American Novel</title>
<characters>
<character>
<name>Cliff</name>
<desc>really great guy</desc>
</character>
<character>
<name>Lovely Woman</name>
<desc>matchless beauty</desc>
</character>
<character>
<name>Loyal Dog</name>
<desc>sleepy</desc>
</character>
</characters>
<plot>
Cliff meets Lovely Woman. Loyal Dog sleeps, but wakes up to bark
at mailman.
</plot>
<success type='bestseller'>4</success>
<success type='bookclubs'>9</success>
</book>
</books>
XML;

//提取節(jié)點(diǎn)內(nèi)容
$xml = new SimpleXMLElement($xmlstr);
foreach ($xml->book[0]->success as $success) {
switch((string) $success['type']) { // Get attributes as element indices
case 'bestseller':
echo $success. ' months on bestseller list<br>';
break;
case 'bookclubs':
echo $success. ' bookclub listings';
break;
}
}

//修改文本節(jié)點(diǎn)內(nèi)容
$xml = new SimpleXMLElement($xmlstr);
$xml->book[0]->characters->character[0]->name = 'Big Cliff';
echo $xml->asXML();

//添加子元素的文本節(jié)點(diǎn)
$xml = new SimpleXMLElement($xmlstr);
$character = $xml->book[0]->characters->addChild('character');
$character->addChild('name', 'Yellow Cat');
$character->addChild('desc', 'aloof');
$success = $xml->book[0]->addChild('success', '2');
$success->addAttribute('type', 'reprints');
echo $xml->asXML();

?>


實(shí)例二:
復(fù)制代碼 代碼如下:
if (file_exists('test1.xml')) { //讀取xml文件
$xml = simplexml_load_file('test1.xml');
var_dump(xml);
} else {
exit('Failed to open test1.xml.');
}


三.DOM和simple互操作
DOM導(dǎo)入simpleXML:
復(fù)制代碼 代碼如下:
<?php
$sxe = simplexml_load_string('<books><book><title>Great American
Novel</title></book></books>');
if ($sxe === false) {
echo 'Error while parsing the document';
exit;
}
$dom_sxe = dom_import_simplexml($sxe);
if (!$dom_sxe) {
echo 'Error while converting XML';
exit;
}
$dom = new DOMDocument('1.0');
$dom_sxe = $dom->importNode($dom_sxe, true);
$dom_sxe = $dom->appendChild($dom_sxe);
$test2 = $dom->saveXML(); // put string in test2
$dom -> save('test2.xml'); // save as file
?>


simpleXML導(dǎo)入DOM:
復(fù)制代碼 代碼如下:
<?php
$dom = new domDocument;
$dom->loadXML('<books><book><title>Great American
Novel</title></book></books>');
if (!$dom) {
echo 'Error while parsing the document';
exit;
}
$s = simplexml_import_dom($dom);
echo $s->book[0]->title; // Great American Novel
?>

php技術(shù)用PHP編寫和讀取XML的幾種方式,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 六月激情 | 福利在线观看 | 国产 麻豆 | 国内国外精品影片无人区 | 在线国产二区 | 玖玖五月| a级精品国产片在线观看 | 国产精品视频免费播放 | 91精品国产综合久久青草 | 国语自产自拍秒拍在线视频 | 日韩精品中文字幕一区三区 | 一本色道久久综合 | 伊人2| 久久久国产精品福利免费 | 国产日韩欧美综合色视频在线 | 日本在线加勒比 | 欧美人与禽交片在线播放 | 日本高清中文字幕一区二区三区 | 美国bbbbbbbbb免费毛片 | 亚洲福利在线播放 | 亚洲图片欧美文学小说激情 | 国产一区二区三区在线观看免费 | 美女网站黄在线看 | 久久久久久久久久综合情日本 | 91中文字幕在线一区 | 国产91免费视频 | 成人福利在线视频 | 日本人妖系列 | 精品视频一区二区三三区四区 | 国产成人盗摄精品 | 小说区图片区综合久久88 | 亚洲福利视频一区二区三区 | 天天躁天天爽 | 大量出精汇编免费看 | 亚洲一区二区三区免费观看 | 爱搞逼综合网 | 中文字幕天天躁日日躁狠狠 | 色网影院 | 亚洲精品天堂自在久久77 | 色偷偷尼玛图亚洲综合 | 四色成人网 |