Tidy 関数
PHP Manual

tidy_setopt

(PECL tidy >= 0.5.2)

tidy_setopt指定した Tidy ドキュメントについての設定を更新する

説明

bool tidy_setopt ( string $option , mixed $value )

tidy_setopt() は、 指定したオプション option の値を 新しい値 value に更新します。

パラメータ

option

tidy オプションの名前。背使用可能なオプションの一覧は » http://tidy.sourceforge.net/docs/quickref.html にあります。

value

tidy オプションの値。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 tidy_setopt() の例

<?php
$html 
'<p>test</i>';

$tidy tidy_parse_string($html);

tidy_setopt('indent'FALSE);
?>

注意

注意: この関数は、Tidy 1.0 でのみ利用可能です。 この関数は、Tidy 2.0 では古い関数として削除されているためです。

参考


Tidy 関数
PHP Manual