时间:2021-07-01 10:21:17 帮助过:35人阅读
输出此XML 文档内容的过程以及方法如下。
<?xml version='1.0' standalone='yes'?>
<Messages>
<msg id='1'>
<title>This is Title</title>
<content>Here is Content</content>
<time>2008-03-20 21:50:23</time>
<reply id='11'>reply 1</reply>
<reply id='12'>reply 2</reply>
</msg>
</Messages>
这是一篇保存有留言信息的XML 文档,每条信息包括属性id,子节点title、content、time
以及若干条对于它的回复信息,每条回复包括属性id 及回复的内容。
用SimpleXML 处理并
<?php
//cong work atWed Mar 20 19:59:04 CST 2008
//将数据从MySQL 数据库中保存到XML 文件中
//可以使用如下几种方式构造初始的SimpleXMLElement 对象
//1、从DOM 对象中构造
//$dom = new DOMDocument();
//$dom->loadXML("<rows></rows>");
//$xml = simplexml_import_dom($dom);
//2、从仅包含根标签的xml 文件中构造
//$xml = simplexml_load_file('messages.xml');
//3、直接写根标签字符串构造
//$xml = simplexml_load_string("<Messages></Messages>");
//4、使用SimpleXMLElement 类的构造器构造
$xml = new SimpleXMLElement('<Messages></Messages>');
//连接数据库
mysql_connect('localhost','root','root');
mysql_select_db('test');
mysql_query('set names utf8');
//查询消息
$rs = mysql_query("select * from messages");
$i = 0; //用做多条消息的数组索引下标
while($row = mysql_fetch_assoc($rs)){
$xml->message[$i] = ''; //… … … … … … … … … … … … ①
$xml->message[$i]['id'] = $row['id'];
$xml->message[$i]->title = $row['title'];
$xml->message[$i]->content = $row['content'];
$xml->message[$i]->time = $row['time'];
//根据消息id 查询它相关的回复信息
$rsReply = mysql_query("select * from replies where mid={$row['id']}");
$j = 0; //用于做多条回复的索引下标
while($rowReply = mysql_fetch_assoc($rsReply)){
$xml->message[$i]->reply[$j] = $rowReply['reply'];
$xml->message[$i]->reply[$j]['id'] = $rowReply['id'];
$j++;
}
$i++;
}
$xml->asXML('messages.xml');
?>
上述代码唯一值得一提的地方就是标志①的那行。当我们要向一个SimpleXML 对象中新
增一个节点或属性时,必须保证它的父节点是存在的,否则会报一个致命错误,提示信息是:
Objects used as arrays in post/pre increment/decrement must return values by reference。希望大家
不要被这段不知所云的提示所迷惑。相信读者能通过对上述代码的了解,对等地写出一个从XML文件到MySQL 的代码出来。