PHP整理禁用修复功能,只需缩进

时间:2012-08-13 16:42:39

标签: php indentation tidy

我的代码看起来像那样

$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> ??

这样的材料

1 个答案:

答案 0 :(得分:2)

我认为htmspecialchars()htmlspecialchars_decode()功能可能会对您有所帮助。