我的代码看起来像那样
$markup = ob_get_clean();
// Specify configuration
$config = array(
'indent' => true,
'output-xhtml' => true,
'wrap' => 200);
// Tidy
$tidy = new tidy;
$tidy->parseString($markup, $config, 'utf8');
$tidy->cleanRepair();
有一个很大的问题:我的web php代码从包含编程材料(如include等)的数据库中获取字符串,并将整齐得到<stdio>
作为错误标记,“修复”(将其从输出中删除)是否存在任何方式只是缩进代码?我的意思是不修理和删除像<stdio>
??