PHP 漂亮打印停止工作
我的 php 代码不再工作,
$doc = DOMDocument::loadXML($string);
$doc->formatOutput = true;
echo $doc->saveXML();
出现错误
致命错误:调用 /path/to/the/File 中未定义的方法 stdClass::saveXML() 在线 242
我有 PHP 版本 5.2.14
I have php code that doesn't work anymore
$doc = DOMDocument::loadXML($string);
$doc->formatOutput = true;
echo $doc->saveXML();
I've got error
Fatal error: Call to undefined method stdClass::saveXML() in /path/to/the/File on line 242
I've got PHP version 5.2.14
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅有关 DOMDocument 的手册:
和
$string
很可能为空。See the manual on DOMDocument:
and
$string
is most likely empty.