php-resource

PHP Handbuch

tidy_get_opt_doc

tidy_get_opt_doc

(PHP 5 >= 5.1.0RC1)

tidy_get_opt_doc --  Returns the documentation for the given option name

Beschreibung

Procedural style:

string tidy_get_opt_doc ( tidy object, string optname )

Object oriented style:

string tidy->getOptDoc ( string optname )

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

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

Parameter Liste

object

A 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";
}

?>



Anmerkungen zum PHP Handbuch
Neue Anmerkung schreiben
 



 

Neuzugänge PHP MySQL Tutorials

Joomla! Starterhilfe

Dieses Tutorial begleitet Sie bei dem Einstieg in die Welt von dem CMS Joomla!.

17.01.2012 werninator | Kategorie: MySQL
Objektorientiertes Programmieren

Dieses Tutorial beschreibt sehr gut die Wirkunsweise von objektorientiertes Programmieren. Also bestens geeignet um das objektorientierte Programmieren zu verstehen.

07.12.2010 phpsven | Kategorie: PHP
Tutorials zu Facebook Anwendungen mit PHP

In mehreren Tutorials wird der Zugriff auf Facebook Daten mittels Graph API, FQL und REST API erklärt. Alle Codebeispiele liegen zum Ausprobieren in einem SVN, bzw. github Repository bereit.

06.12.2010 abouttheweb | Kategorie: PHP