Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tidy_getopt(3) [php man page]

TIDY_GETOPT(3)								 1							    TIDY_GETOPT(3)

tidy::getOpt - Returns the value of the specified configuration option for the tidy document

       Object oriented style

SYNOPSIS
mixed tidy::getOpt (string $option) DESCRIPTION
Procedural style mixed tidy_getopt (tidy $object, string $option) Returns the value of the specified $option for the specified tidy $object. PARAMETERS
o $object - The Tidy object. o $option - You will find a list with each configuration option and their types at: http://tidy.sourceforge.net/docs/quickref.html. RETURN VALUES
Returns the value of the specified $option. The return type depends on the type of the specified one. EXAMPLES
Example #1 tidy_getopt(3) example <?php $html ='<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html><head><title>Title</title></head> <body> <p><img src="img.png"></p> </body></html>'; $config = array('accessibility-check' => 3, 'alt-text' => 'some text'); $tidy = new tidy(); $tidy->parseString($html, $config); var_dump($tidy->getOpt('accessibility-check')); //integer var_dump($tidy->getOpt('lower-literals')); //boolean var_dump($tidy->getOpt('alt-text')); //string ?> The above example will output: int(3) bool(true) string(9) "some text" PHP Documentation Group TIDY_GETOPT(3)

Check Out this Related Man Page

TIDY.GETOPTDOC(3)							 1							 TIDY.GETOPTDOC(3)

tidy::getOptDoc - Returns the documentation for the given option name

       Object oriented style

SYNOPSIS
string tidy::getOptDoc (string $optname) DESCRIPTION
Procedural 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. PARAMETERS
o $object - The Tidy object. o $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 /> "; } ?> SEE ALSO
tidy.getconfig(3), tidy.getopt(3). PHP Documentation Group TIDY.GETOPTDOC(3)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

linking unix generated text file to html page

i am trying to link the text files that i generated from my shell script to an html page, to that i can view them using a browser, like internet explorer. i want to open the text files in html page when i enter a command to view the text file from the shell command. please could anyone help... (1 Reply)
Discussion started by: alexd
1 Replies

2. UNIX for Dummies Questions & Answers

passing variable to function

Hi, I am trying to sum up numbered columns and in order to tidy up the program I have wrote a function to do the adding of some numbers. I have a problem though with passing a variable to the function in the UNIX bash shell. The function only gives the first number in the variable list and does... (4 Replies)
Discussion started by: Knotty
4 Replies

3. Shell Programming and Scripting

Replace text in multiple files

Ok guys, If anyone could help me out on this puppy I'd be very appreciative! Here's the scenario I have a string for example : <img src=BLANK_IMG border=0 width=221 height=12> or <img src=IMG border=0 height=12 width=221 > or anything else really.... need to basically change each... (10 Replies)
Discussion started by: Tonka52
10 Replies

4. Shell Programming and Scripting

find text but replace a text beside it

I have an html file that looks like this (this is just a part of the html file): <td colspan="3" rowspan="1" style="text-align: center; background-color: rgb(<!-- IDENTIFIER1 -->51, 255, 51);"><small><!-- IDENTIFIER2 -->UP</small></td> This is to automatically update the status of the... (4 Replies)
Discussion started by: The One
4 Replies

5. UNIX for Dummies Questions & Answers

Permission denied problem

I am trying to tidy our server and write cron to keep it tidy. We took on a third party to do some work last year. They were given their own UID/pwd so that they would have limited access. Part of what they wrote created an archive file at the end of every day. A year on and we don't want... (1 Reply)
Discussion started by: RexJacobus
1 Replies

6. Shell Programming and Scripting

awk modify multiple columns with pipes

Hello, I have a CSV-like dataset where some of the columns contain HTML snippets which I need to convert to XHTML. For any given snippet, I have a functioning config for the text processor 'tidy' such that tidy -config tidy.cfg example.html does the job I need done. I would like to process... (10 Replies)
Discussion started by: bstamper
10 Replies

7. Shell Programming and Scripting

Help Me!Urgent!!

I'm a absolute amateur, Is it possible, and if so how, to create a shell script that scans a html page, finds its text (Perhaps by looking for html text tags), copies it to a new file, and replaces the original text with a variable. Any advice would truly be appreciated!! I'm desperate! (1 Reply)
Discussion started by: Smartpsa
1 Replies