将 XMLWriter 输出到 XML 文件
我目前正在使用 XMLWriter 来显示 xml 文件。但是我想知道如何将输出导出到 .xml 文件。
我当前的代码是:
$res = mysql_query($sql);
$xml = new XMLWriter();
$xml->openURI("php://output");
$xml->startDocument();
$xml->startElement('stores');
while ($row = mysql_fetch_assoc($res)) {
//loads of code
}
$xml->endElement();
$xml->flush();
I am currently using XMLWriter to display an xml file. However I would like to know how I could export the output to a .xml file.
My current code is:
$res = mysql_query($sql);
$xml = new XMLWriter();
$xml->openURI("php://output");
$xml->startDocument();
$xml->startElement('stores');
while ($row = mysql_fetch_assoc($res)) {
//loads of code
}
$xml->endElement();
$xml->flush();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
openURI()
方法中使用文件名而不是php://output
。Use a filename instead of
php://output
in theopenURI()
method.