If you are using the object oriented style of Tidy options are set when calling tidy::parseString(...).
Read more at http://us3.php.net/manual/en/function.tidy-parse-string.php
(PECL tidy >= 0.5.2)
tidy_setopt — Modifie la valeur de l'option de configuration Tidy
tidy_setopt() configure l'option
option
avec la nouvelle valeur
value
.
option
Le nom de l'option. Pour une explication sur chaque option, voyez » http://tidy.sourceforge.net/docs/quickref.html.
value
La valeur de l'option.
Cette fonction retourne TRUE
en cas de
succès ou FALSE
si une erreur survient.
Exemple #1 Exemple avec tidy_setopt()
<?php
$html = '<p>test</i>';
$tidy = tidy_parse_string($html);
tidy_setopt('indent', FALSE);
?>
Note: Cette fonction n'est disponible qu'avec Tidy 1.0. Elle a été abandonnée en Tidy 2.0 et a donc été supprimée.
If you are using the object oriented style of Tidy options are set when calling tidy::parseString(...).
Read more at http://us3.php.net/manual/en/function.tidy-parse-string.php