我尝试以这种方式创建 html,并尝试创建自结束标记:
$doc = new DOMDocument();
//document creation here...
function render()
{
$t = array(
'></area',
'></base',
'></basefont',
'></br',
'></col',
'></hr',
'></img',
'></input',
'></link',
'></meta'
);
$str = str_replace($t,"/", $doc->saveHTML(), $count);
echo $str;
echo $count;
}
它还不行。它没有替换,我得到了$count
回报0
;我错过了什么吗?如何正确获得空标签喜欢<img>
或不<input>
喜欢?<input />
<input></input>
谢谢。