PHP 漂亮打印停止工作

发布于 2024-11-08 16:15:26 字数 312 浏览 2 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裂开嘴轻声笑有多痛 2024-11-15 16:15:26

请参阅有关 DOMDocument 的手册:

如果静态调用,则在失败时返回 DOMDocumentFALSE

如果传递空字符串作为源,将生成警告。此警告不是由 libxml 生成的,并且无法使用 libxml 的错误处理函数进行处理。

$string 很可能为空。

See the manual on DOMDocument:

If called statically, returns a DOMDocument or FALSE on failure.

and

If an empty string is passed as the source, a warning will be generated. This warning is not generated by libxml and cannot be handled using libxml's error handling functions.

$string is most likely empty.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文