配置整洁如何让html内容整洁?没有html标签和doctype
我希望当我提供整洁的"<p>ddddddd<lll>"
字符串时,它会返回<p>dddddd</p>
而不是带有doctype的html ...
我使用了这个配置,但是我应该怎么做才能给出我想要的结果呢?
$config = array(
'indent' => true,
'output-xhtml' => true,
'wrap' => 200);
$tidy = new tidy;
$tidy->parseString($output.". . .",$config,'utf8');
$tidy->cleanRepair();
return $tidy;
并且有没有办法在没有send config参数的情况下设置编码?
答案 0 :(得分:0)
使用show-body-only
$config = array(
'output-xhtml' => true,
'show-body-only' => true,
'wrap' => 0,
);