PHP实现浏览器格式化显示XML的方法示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-05 10:23:48 浏览: 评论:0
这篇文章主要介绍了PHP实现浏览器格式化显示XML的方法,涉及php针对xml节点的创建、添加、格式化显示等相关操作技巧与注意事项,需要的朋友可以参考下。
本文实例讲述了PHP实现浏览器格式化显示XML的方法,分享给大家供大家参考,具体如下:
在头部加上
header("Content-type: application/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;
Tags: PHP浏览器格式化
- 上一篇:php语法检查的方法总结
- 下一篇:PHP单元测试框架PHPUnit用法详解
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)