HTML字符串缩进代码

时间:2015-05-08 12:26:42

标签: php html string indentation

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

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

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

然后我打印出来:

print $code[0];

我得到的没有格式。

如何以简洁的方式打印缩进?

提前谢谢你;)

1 个答案:

答案 0 :(得分:0)

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