使用PHP DOMDocument()类时保留换行符

时间:2016-08-02 05:00:46

标签: php newline domdocument

当您查看来源时,我的HTML看起来像这样:

原始HTML

<!DOCTYPE html>
<html>
    <head>
    </head>
    <body>
    </body>
</html>

但在我做完之后:

$dom = new DOMDocument();
$dom->loadHTML($html);
$dom->saveHTML();

我的源代码转向:

新HTML

<!DOCTYPE html><html><head></head><body></body></html>

使用PHP DOMDocument()类及其方法时,如何保留新行和空格?

1 个答案:

答案 0 :(得分:0)

要保留空白,请尝试以下几行:

$dom=new DOMDocument('1.0', 'UTF-8');
$dom->formatOutput=false;
$dom->preserveWhiteSpace=true;

$dom->validateOnParse=false;
$dom->standalone=true;
$dom->strictErrorChecking=false;
$dom->recover=true;

您可以设置其他一些属性 - 您可以在手册中找到它们