php 让浏览器格式化显示XML
生活随笔
收集整理的這篇文章主要介紹了
php 让浏览器格式化显示XML
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
在頭部加上
header("Content-type: application/xml");
header("Content-type: application/xml");
剛開(kāi)始加上了發(fā)現(xiàn)還是不行。最近一直嘗試最后終于找到解決辦法。在代碼最后加上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;
終于顯示了,很爽
總結(jié)
以上是生活随笔為你收集整理的php 让浏览器格式化显示XML的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Autofac的使用
- 下一篇: SQL--PUBS