tidy::getOptDoc

(PHP 5 >= 5.1.0, PHP 7)
Returns the documentation for the given option name
string tidy::getOptDoc ( string $optname )

Object oriented style

Procedural style

string tidy_get_opt_doc ( tidy $object , string $optname )

tidy_get_opt_doc() returns the documentation for the given option name.

Note:

You need at least libtidy from 25 April, 2005 for this function be available.

Parameters:
object

The Tidy object.

optname

The option name

Returns:

Returns a string if the option exists and has documentation available, or FALSE otherwise.

Examples:
Print all options along with their documentation and default value
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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";
}
 
?>
See also:

tidy::getconfig() -

tidy::getopt() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.