PHP实现浏览器格式化显示XML的方法示例

过去的习惯,决定今天的你,所以,过去的懒惰,决定你今天的一败涂地。人来到这世界后,命运注定了他必须要拼搏,奋斗,坚持,勇敢地走下去,走出属于自己的道路,没有人能不劳而获。

本文实例讲述了PHP实现浏览器格式化显示XML的方法。分享给大家供大家参考,具体如下:

在头部加上

header("Content-type: application/xml");

刚开始加上了发现还是不行。最近一直尝试最后终于找到解决办法。在代码最后加上exit;就可以了

$Dom = new \DOMDocument('1.0', 'utf-8');
$paper = $Dom->createElement('paper');
$Dom->appendChild($paper);
$exercises = $Dom->createElement('exercises');
$exercises->setAttribute('id','1');
$exercises->setAttribute('type','1');
$exercises->setAttribute('answer','1');
$paper->appendChild($exercises);
$title = $Dom->createElement('title');
$title->setAttribute('label','1');
$title->setAttribute('mapsrc','1');
$title->setAttribute('soundsrc','1');
$exercises->appendChild($title);
$option = $Dom->createElement('option');
$option->setAttribute('id','1');
$option->setAttribute('label','1');
$option->setAttribute('mapsrc','1');
$option->setAttribute('soundsrc','1');
$exercises->appendChild($option);
header("Content-type: application/xml");
echo $Dom->saveXml(); exit;

终于显示了,很爽

PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:

在线XML/JSON互相转换工具:
http://tools.haodaima.com/code/xmljson

在线格式化XML/在线压缩XML
http://tools.haodaima.com/code/xmlformat

XML在线压缩/格式化工具:
http://tools.haodaima.com/code/xml_format_compress

XML代码在线格式化美化工具:
http://tools.haodaima.com/code/xmlcodeformat

希望本文所述对大家PHP程序设计有所帮助。

到此这篇关于PHP实现浏览器格式化显示XML的方法示例就介绍到这了。喜迎阴晴圆缺,笑傲风霜雨雪更多相关PHP实现浏览器格式化显示XML的方法示例内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: PHP XML