|
tidy::htmltidy_get_htmlReturns a tidyNode object starting from the <html> tag of the tidy parse tree DescriptionObject-oriented style
public tidyNodenull tidy::html()
Procedural style tidyNodenull tidy_get_html(tidy
$tidy )Returns a tidyNode object starting from the <html> tag of the tidy parse tree. Parameters
Return ValuesReturns the tidyNode object. Examples
Example #1 tidy::html example
The above example will output: <html> <head> <title>test</title> </head> <body> <p>paragraph</p> </body> </html> See Also
|