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


Posted in PHP onJanuary 12, 2013

一.使用DOM生成和读取XML文件
实例一:

<?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 
?>

实例二:
$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');

实例三:
test1.xml:

<?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:

$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文件
实例一:

<? 
$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; //提取节点内容 
$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; 
} 
} 
//修改文本节点内容 
$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:

<?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导入DOM:

<?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 相关文章推荐
用PHP读取和编写XML DOM的实现代码
Feb 03 PHP
PHP简洁函数小结
Aug 12 PHP
thinkphp实现数组分页示例
Apr 13 PHP
php可生成缩略图的文件上传类实例
Dec 17 PHP
PHP程序员必须清楚的问题汇总
Dec 18 PHP
PHP+MySQL之Insert Into数据插入用法分析
Sep 27 PHP
PHP使用mkdir创建多级目录的方法
Dec 22 PHP
PHP使用curl模拟post上传及接收文件的方法
Mar 04 PHP
yii2.0实现创建简单widgets示例
Jul 18 PHP
PHP微信支付结果通知与回调策略分析
Jan 10 PHP
php和asp语法上的区别总结
May 12 PHP
PHP+redis实现的限制抢购防止商品超发功能详解
Sep 19 PHP
php图片的裁剪与缩放生成符合需求的缩略图
Jan 11 #PHP
浏览器预览PHP文件时顶部出现空白影响布局分析原因及解决办法
Jan 11 #PHP
php判断上传的Excel文件中是否有图片及PHPExcel库认识
Jan 11 #PHP
PHP中header和session_start前不能有输出原因分析
Jan 11 #PHP
PHP跨时区(UTC时间)应用解决方案
Jan 11 #PHP
PHP编程函数安全篇
Jan 08 #PHP
php中定时计划任务的实现原理
Jan 08 #PHP
You might like
PHP学习笔记之三 数据库基本操作
2011/01/17 PHP
PHP 读取大文件的X行到Y行内容的实现代码
2013/06/24 PHP
初识PHP中的Swoole
2016/04/05 PHP
checkbox全选/取消全选以及checkbox遍历jQuery实现代码
2009/12/02 Javascript
JavaScript Tips 使用DocumentFragment加快DOM渲染速度
2010/06/28 Javascript
JQuery跨Iframe选择实现代码
2010/08/19 Javascript
浅析用prototype定义自己的方法
2013/11/14 Javascript
对之前写的jquery分页做下升级
2014/06/19 Javascript
javascript使用Promise对象实现异步编程
2016/03/01 Javascript
关于Bootstrap弹出框无法调用问题的解决办法
2016/03/10 Javascript
BootStrap中的table实现数据填充与分页应用小结
2016/05/26 Javascript
微信小程序 中wx.chooseAddress(OBJECT)实例详解
2017/03/31 Javascript
详解使用Vue Router导航钩子与Vuex来实现后退状态保存
2017/09/11 Javascript
Vue-Router进阶之滚动行为详解
2017/09/13 Javascript
详解webpack + react + react-router 如何实现懒加载
2017/11/20 Javascript
angularjs 页面自适应高度的方法
2018/01/17 Javascript
基于js Canvas实现二次贝塞尔曲线
2018/12/25 Javascript
jQuery事件多次绑定与解绑问题实例分析
2019/02/19 jQuery
javascript 函数的暂停和恢复实例详解
2020/04/25 Javascript
[01:39](回顾)各路豪强针锋相对,几经鏖战四强产生
2014/07/01 DOTA
Python实现基于PIL和tesseract的验证码识别功能示例
2018/07/11 Python
Python学习笔记之函数的参数和返回值的使用
2019/11/20 Python
戴森英国官网:Dyson英国
2019/05/07 全球购物
Oracle快照(snapshot)
2015/03/13 面试题
Java的类可以定义为Protected或者Private得吗
2015/09/25 面试题
求职信格式范本
2013/11/15 职场文书
外贸销售员求职的自我评价
2013/11/23 职场文书
电气自动化个人求职信范文
2014/02/03 职场文书
社区敬老月活动实施方案
2014/02/17 职场文书
人力资源部经理助理岗位职责
2014/03/04 职场文书
同意离婚答辩状
2015/05/22 职场文书
期中考试后的感想
2015/08/07 职场文书
Pandas 稀疏数据结构的实现
2021/07/25 Python
MySQL悲观锁与乐观锁的实现方案
2021/11/02 MySQL
一次项目中Thinkphp绕过禁用函数的实战记录
2021/11/17 PHP
vue递归实现树形组件
2022/07/15 Vue.js