我有一个html文件,我通过DOMDocument
加载,我在其中使用saveHTML
对输出html做了一些DOM操作。
问题是删除了输入标签后的空格,这里是HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
window.jQuery || document.write(unescape('%3cscript src="/script/jquery.min.js"%3e%3c/script%3e'));
</script>
</head>
<body>
<div>
<div>
<form method="post" action="/register/">
<label>First name: <input type="text" name="firstname"></label>
<label>Last name: <input type="text" name="lastname"></label>
<label>Date of birth: <input type="date" name="dateofbirth"></label>
<label>Address: <input type="text" name="address"></label>
<label>Phone number: <input type="text" name="phonenumber"></label>
<label>Sex: <input type="text" name="sex"></label>
<label>Email address: <input type="email" name="email"></label>
<label>Account password: <input type="password" name="password"></label>
<input id="register-button" type="submit" value="Register">
<input type="reset" value="Reset">
<input type="button" value="Cancel">
</form>
</div>
</div>
</body>
</html>
PHP
$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();
在我尝试过的其他代码(<br>
,<hr>
)之后,除了<head>
中的代码之外,它对空格进行了条纹化。
我尝试将formatOutput
设置为true,但只将空格保留在结束标记之前。
有没有办法让DOMDocument在<input>
之后保留空格?
答案 0 :(得分:4)
我知道这是一个老问题,当我遇到https://bugs.php.net/bug.php?id=50278
时我正在寻找同样的事情在说明中,它将LIBXML_HTML_NODEFDTD
作为一个选项传递出来:
$doc = new DOMDocument();
$doc->loadHTMLFile($file, LIBXML_HTML_NODEFDTD);
echo $doc->saveHTML();
这将保留空白区域。