欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-12 18:51:16
本文实例讲述了php实现浏览器格式化显示xml的方法。分享给大家供大家参考,具体如下: 在头部加上 header("content-type: applicat...

本文实例讲述了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;

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

终于显示了,很爽

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

在线xml/json互相转换工具:

在线格式化xml/在线压缩xml

xml在线压缩/格式化工具:

xml代码在线格式化美化工具:

更多关于php相关内容感兴趣的读者可查看本站专题:《php针对xml文件操作技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

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