Query: tidy_get_opt_doc
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
TIDY_GET_OPT_DOC(3) 1 TIDY_GET_OPT_DOC(3) tidy::getOptDoc - Returns the documentation for the given option name Object oriented styleSYNOPSISstring tidy::getOptDoc (string $optname)DESCRIPTIONProcedural style string tidy_get_opt_doc (tidy $object, string $optname) tidy_get_opt_doc(3) returns the documentation for the given option name. Note You need at least libtidy from 25 April, 2005 for this function be available.PARAMETERSo $object - The Tidy object. o $optname - The option nameRETURN VALUESReturns a string if the option exists and has documentation available, or FALSE otherwise.EXAMPLESExample #1 Print all options along with their documentation and default value <?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 /> "; } ?>SEE ALSOtidy.getconfig(3), tidy.getopt(3). PHP Documentation Group TIDY_GET_OPT_DOC(3)
Related Man Pages |
---|
tidy_get_opt_doc(3) - php |
tidy_parse_file(3) - php |
tidy.repairfile(3) - php |
tidy.parsefile(3) - php |
tidy.getoptdoc(3) - php |
Similar Topics in the Unix Linux Community |
---|
cp: cannot stat `/opt/IBM/cofig.sh': No such file or directory |
/opt file system full !!! |
Part of a string |
getopt invalid option selection |
trying to view contents of an existing script |