PHP Doku:: Returns the documentation for the given option name - tidy.getoptdoc.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyThe Tidy classtidy::getoptdoc -- tidy_get_opt_doc

Ein Service von Reinhard Neidl - Webprogrammierung.

The Tidy class

<<tidy::getOpt -- tidy_getopt

tidy::getRelease -- tidy_get_release>>

tidy::getoptdoc

tidy_get_opt_doc

(PHP 5 >= 5.1.0)

tidy::getoptdoc -- tidy_get_opt_doc Returns the documentation for the given option name

Beschreibung

Object oriented style

string tidy::getOptDoc ( string $optname )

Procedural style

string tidy_get_opt_doc ( tidy $object , string $optname )

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

Hinweis:

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

Parameter-Liste

object

The Tidy object.

optname

The option name

Rückgabewerte

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

Beispiele

Beispiel #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 />\n";
}

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)