Php/docs/tidy.examples.basic

提供:Dev Guides
< Php
移動先:案内検索

Tidy の例

このシンプルな例は、Tidy の基本的な使い方を示しています。

例1 Tidy の基本的な使用法

<?phpob_start();?><html>a html document</html><?php$html = ob_get_clean();// 設定$config = array(           'indent'         => true,           'output-xhtml'   => true,           'wrap'           => 200);// Tidy$tidy = new tidy;$tidy->parseString($html, $config, 'utf8');$tidy->cleanRepair();// 出力echo $tidy;?>