当您查看来源时,我的HTML看起来像这样:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
但在我做完之后:
$dom = new DOMDocument();
$dom->loadHTML($html);
$dom->saveHTML();
我的源代码转向:
<!DOCTYPE html><html><head></head><body></body></html>
使用PHP DOMDocument()类及其方法时,如何保留新行和空格?
答案 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;
您可以设置其他一些属性 - 您可以在手册中找到它们