我有一个html文件,我加载到DOMDocument
,其中我做了一些DOM操作输出html与saveHTML
.
Meta http-equiv="Content-Type" content="text/html; charset=utf-8">
$template_file = $_SERVER['DOCUMENT_ROOT']."/application/template/template.html";
$doc = new DOMDocument('1.0','utf-8');
$doc->loadHTMLFile($template_file);
/* dom manipulation,importing and appending nodes from other documents etc */
echo $doc->saveHTML();
除了< head>中的标签之外,它在我尝试的其他标签(< br>,@H_404_22@)之后划分了空格.
我尝试将formatOutput
设置为true,但只保留了结束标记之前的空格.
有没有办法让DOMDocument在我的< input>之后保留空格?
最佳答案
我知道这是一个老问题,当我遇到这个https://bugs.php.net/bug.php?id=50278时,我正在寻找同样的事情
原文链接:https://www.f2er.com/html/425894.html它在说明中将LIBXML_HTML_NODEFDTD作为一个选项传递给它:
$doc = new DOMDocument();
$doc->loadHTMLFile($file,LIBXML_HTML_NODEFDTD);
echo $doc->saveHTML();
这将保留空白区域.