HTML 字符串到缩进代码

HTML String to indented code

我有一个从抓取这个网站得到的字符串:https://www.exploit-db.com

在一个特定的漏洞利用中,我得到了代码:

$code = $crawler2->filterXPath('//div[@id="container"]/pre->each(function ($nodes) {
                return  $nodes->text();
                    });

然后我打印它:

print $code[0];

而且我没有格式就得到了。

如何以漂亮的方式打印缩进?

提前致谢;)

您可以使用 DOMDocument 方法 saveXML 和 formatOutput = 1 参数。