downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<tidy_get_htmltidy_get_output>
Last updated: Thu, 26 Jun 2008

tidy_get_opt_doc

(PHP 5 >= 5.1.0)

tidy_get_opt_doc — Returns the documentation for the given option name

Description

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.

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

Parameters

object

A tidy object

optname

The option name

Return Values

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

Examples

Example #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";
}

?>



add a noteadd a note User Contributed Notes
Returns the documentation for the given option name
There are no user contributed notes for this page.




<tidy_get_htmltidy_get_output>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs