Javascript debugger
Website design
↑
Procedural style:
Object oriented style:
tidy_get_opt_doc() returns the documentation for the given option name.
You need at least libtidy from 25 April, 2005 for this function be available.
Returns a string if the option exists and has documentation available, or
FALSE
otherwise.
<?php
$tidy = new tidy;
$config = $tidy->getConfig();
ksort($config);
foreach ($config as $opt => $val) {
if (!$doc = $tidy->getOptDoc($opt))
$doc = 'no documentation available!';
$val = ($tidy->getOpt($opt) === true) ? 'true' : $val;
$val = ($tidy->getOpt($opt) === false) ? 'false' : $val;
echo "<p><b>$opt</b> (default: '$val')<br />".
"$doc</p><hr />\n";
}
?>
tidy_get_config() |
tidy_getopt() |