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;

0818b9ca8b590ca3270a3433284dd417.png 终于显示了,很爽

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值