欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > php >内容正文

php

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

发布时间:2025/3/15 php 41 豆豆
生活随笔 收集整理的这篇文章主要介绍了 php xml 格式化,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操作的在线工具供大家参考使用:

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

总结

以上是生活随笔为你收集整理的php xml 格式化,PHP实现浏览器格式化显示XML的方法示例的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。