2009-09-02 91 views

回答

5

您可能在尋找Tidy。它清理和格式化XML和HTML。還有一個PHP擴展,但您可能需要緩衝您的輸出並將其傳遞到那裏。

編輯:
一個代碼示例:

ob_start(); 
// output your html 
$output = ob_get_flush(); 

// Specify configuration 
$config = array(
      'indent'   => true, 
      'output-xhtml' => true, 
      'wrap'   => 200); 

// Tidy 
$tidy = new tidy; 
$tidy->parseString($html, $config, 'utf8'); 
$tidy->cleanRepair(); 

// Output 
echo $tidy; 

我沒有測試這一點,但它應該工作。

+0

謝謝,我注意到Tidy,但我沒有注意到它有一個縮進選項。 – ryeguy 2009-09-02 20:32:12

3

看看PHP的Tidy產品。