我的代码看起来像这样
$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 等)的数据库中获取字符串,并且 tidy 得到<stdio>
错误的标签,“repairs”(从输出中删除它)有没有办法缩进代码?我的意思是不要修理和去除部分材料,比如<stdio>
??