栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP

用PHP编写和读取XML的几种方式

PHP 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

用PHP编写和读取XML的几种方式

一.使用DOM生成和读取XML文件
实例一:
复制代码 代码如下:
//Creates XML string and XML document using the DOM
$dom = new Domdocument('1.0');
//add root -
$books = $dom->appendChild($dom->createElement_x_x ('books'));
//add element to
$book = $books->appendChild($dom->createElement_x_x ('book'));
//add element to <book> <BR>$title = $book->appendChild($dom->createElement_x_x ('title')); <BR>//add <title> text node element to <title> <BR>$title->appendChild($dom->createTextNode('Great American Novel')); <BR>//generate xml <BR>$dom->formatOutput = true; // set the formatOutput attribute of domdocument to true <BR>//save XML as string or file <BR>$test1 = $dom->saveXML(); // put string in test1 <BR>$dom -> save('test1.xml'); // save as file <BR>?> <BR> <BR>实例二: <BR><U>复制代码</U> 代码如下: <BR>$aa = "111"; <BR>$xmlstr = <<<XML <BR><?xml version='1.0'?> <BR><document> <BR><title>{$aa}
Joe
Jane

I know that's the answer -- but what's the question?


XML;
$dom = new domdocument;
$dom->loadXML($xmlstr);
$test1 = $dom->saveXML();
$dom->save('test1.xml');


实例三:
test1.xml:
复制代码 代码如下:



Jack Herrington
PHP Hacks
O'Reilly


Jack Herrington
Podcasting Hacks
O'Reilly




example.php:
复制代码 代码如下:
$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 - $publishern";
}


二.使用simple生成和读取xml文件
实例一:
复制代码 代码如下:
$xmlstr = <<


Great American Novel


Cliff
really great guy


Lovely Woman
matchless beauty


Loyal Dog
sleepy



Cliff meets Lovely Woman. Loyal Dog sleeps, but wakes up to bark
at mailman.

4
9


XML;

//提取节点内容
$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
';
break;
case 'bookclubs':
echo $success. ' bookclub listings';
break;
}
}

//修改文本节点内容
$xml = new SimpleXMLElement($xmlstr);
$xml->book[0]->characters->character[0]->name = 'Big Cliff';
echo $xml->asXML();

//添加子元素的文本节点
$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();

?>


实例二:
复制代码 代码如下:
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导入simpleXML:
复制代码 代码如下:
$sxe = simplexml_load_string('Great American <BR>Novel');
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导入DOM:
复制代码 代码如下:
$dom = new domdocument;
$dom->loadXML('Great American <BR>Novel');
if (!$dom) {
echo 'Error while parsing the document';
exit;
}
$s = simplexml_import_dom($dom);
echo $s->book[0]->title; // Great American Novel
?>
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/50376.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号