创设xml数据无法显示
程序员文章站
2022-05-03 16:09:46
...
创建xml数据无法显示
$doc = new DOMDocument('1.0');
// we want a nice output
$doc->formatOutput = true;
$root = $doc->createElement('book');
$root = $doc->appendChild($root);
$title = $doc->createElement('title');
$title = $root->appendChild($title);
$text = $doc->createTextNode('This is the title');
$text = $title->appendChild($text);
echo "Saving all the document:\n";
echo $doc->saveXML() . "\n";
echo "Saving only the title part:\n";
echo $doc->saveXML($title);
?>
echo 出来只显示
Saving all the document: Saving only the title part:
xml的内容无法显示出来!
------解决方案--------------------
查看网页源文件
$doc = new DOMDocument('1.0');
// we want a nice output
$doc->formatOutput = true;
$root = $doc->createElement('book');
$root = $doc->appendChild($root);
$title = $doc->createElement('title');
$title = $root->appendChild($title);
$text = $doc->createTextNode('This is the title');
$text = $title->appendChild($text);
echo "Saving all the document:\n";
echo $doc->saveXML() . "\n";
echo "Saving only the title part:\n";
echo $doc->saveXML($title);
?>
echo 出来只显示
Saving all the document: Saving only the title part:
xml的内容无法显示出来!
------解决方案--------------------
查看网页源文件
相关文章
相关视频
推荐阅读
-
php的webservice的wsdl的XML无法显示问题的解决方法
-
EditPlus调用Scanner无法输出数据显示正在运行怎么办?
-
用jsp将xml文件解析到网页显示,并把数据提交保存到数据库
-
关于Highcharts数据量超过1000时无法显示问题
-
php的webservice的wsdl的XML无法显示问题的解决方法
-
Android Studio3.0 TextView/string.xml无法显示中文问题的解决办法
-
jquery的flexigrid无法显示数据提示获取到数据
-
asp取动态表单中数据并写入xml文件,用xsl显示
-
xml+css显示数据
-
fckeditor部署到weblogic出现xml无法读取及样式不能显示问题的解决方法