Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tidy(3) [php man page]

TIDY(3) 								 1								   TIDY(3)

The tidy class

INTRODUCTION
An HTML node in an HTML file, as detected by tidy. CLASS SYNOPSIS
tidy tidy Properties o string$tidy->errorBuffer Methods o tidyNode tidy::body (void ) o bool tidy::cleanRepair (void ) o tidy::__construct ([string $filename], [mixed $config], [string $encoding], [bool $use_include_path]) o bool tidy::diagnose (void ) o array tidy::getConfig (void ) o int tidy::getHtmlVer (void ) o mixed tidy::getOpt (string $option) o string tidy::getOptDoc (string $optname) o string tidy::getRelease (void ) o int tidy::getStatus (void ) o tidyNode tidy::head (void ) o tidyNode tidy::html (void ) o bool tidy::isXhtml (void ) o bool tidy::isXml (void ) o bool tidy::parseFile (string $filename, [mixed $config], [string $encoding], [bool $use_include_path = false]) o bool tidy::parseString (string $input, [mixed $config], [string $encoding]) o string tidy::repairFile (string $filename, [mixed $config], [string $encoding], [bool $use_include_path = false]) o string tidy::repairString (string $data, [mixed $config], [string $encoding]) o tidyNode tidy::root (void ) PHP Documentation Group TIDY(3)

Check Out this Related Man Page

TIDY.HTML(3)								 1							      TIDY.HTML(3)

tidy::html - Returns atidyNodeobject starting from the <html> tag of the tidy parse tree

       Object oriented style

SYNOPSIS
tidyNode tidy::html (void ) DESCRIPTION
Procedural style tidyNode tidy_get_html (tidy $object) Returns a tidyNode object starting from the <html> tag of the tidy parse tree. PARAMETERS
o $object - The Tidy object. RETURN VALUES
Returns the tidyNode object. EXAMPLES
Example #1 tidy.html(3) example <?php $html = ' <html> <head> <title>test</title> </head> <body> <p>paragraph</p> </body> </html>'; $tidy = tidy_parse_string($html); $html = $tidy->html(); echo $html->value; ?> The above example will output: <html> <head> <title>test</title> </head> <body> <p>paragraph</p> </body> </html> NOTES
Note This function is only available with Zend Engine 2 (PHP >= 5.0.0). SEE ALSO
tidy.body(3), tidy.head(3). PHP Documentation Group TIDY.HTML(3)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Tidying up temp files on exit of script

Hi I believe there is a method to remove all temporary files when a KSH script terminates (either expectedly or unexpectedly). I think is some sort of subroutine you can create that runs when the script exits. Can anyone help me with this please? Many thanks Helen :confused: (2 Replies)
Discussion started by: Bab00shka
2 Replies

2. Shell Programming and Scripting

awktidy

Hi. A post by ghostdog74 at split files by specifying a string (bash shell) - LinuxQuestions.org made me think that many awk scripts could benefit from being tidied. I know that {aigles awk bakunin cfaj futurelet ghostdog74 radoulov summer_cherry vgersh99 Ygor} among others post awk code. ... (5 Replies)
Discussion started by: drl
5 Replies

3. Shell Programming and Scripting

Tidy shell script source file

Hi all, Is there a tool to tidy up shell script source file and reformat it. Preferably I am looking for a perfect tool to do this. Also I have heard it is possible to do with emacs editor but unfortunately it is looking very different and new from vi. Emacs is new to me and I could not find... (1 Reply)
Discussion started by: meharo
1 Replies

4. UNIX for Dummies Questions & Answers

Help with Promting users to move the script along:

Hi guys, Simple question really (only when you know how!) I would like to clear the screen between two parts of script. However I would like the user to be prompted if he/she has completed reading the output from the first part of the script before moving on. i.e = grep "$###" #####... (2 Replies)
Discussion started by: SDKC
2 Replies

5. 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