NAME ^

php_tidy.pir - PHP tidy Library

DESCRIPTION ^

Functions ^

tidyNode tidyNode::getParent()
Returns the parent node if available or NULLNOT IMPLEMENTED.
boolean tidyNode::hasChildren()
Returns true if this node has childrenNOT IMPLEMENTED.
boolean tidyNode::hasSiblings()
Returns true if this node has siblingsNOT IMPLEMENTED.
boolean tidyNode::isAsp()
Returns true if this node is ASPNOT IMPLEMENTED.
boolean tidyNode::isComment()
Returns true if this node represents a commentNOT IMPLEMENTED.
boolean tidyNode::isHtml()
Returns true if this node is part of a HTML documentNOT IMPLEMENTED.
boolean tidyNode::isJste()
Returns true if this node is JSTENOT IMPLEMENTED.
boolean tidyNode::isPhp()
Returns true if this node is PHPNOT IMPLEMENTED.
boolean tidyNode::isText()
Returns true if this node represents text (no markup)NOT IMPLEMENTED.
int tidy_access_count()
Returns the Number of Tidy accessibility warnings encountered for specified document.NOT IMPLEMENTED.
boolean tidy_clean_repair()
Execute configured cleanup and repair operations on parsed markupNOT IMPLEMENTED.
int tidy_config_count()
Returns the Number of Tidy configuration errors encountered for specified document.NOT IMPLEMENTED.
boolean tidy_diagnose()
Run configured diagnostics on parsed and repaired markup.NOT IMPLEMENTED.
int tidy_error_count()
Returns the Number of Tidy errors encountered for specified document.NOT IMPLEMENTED.
TidyNode tidy_get_body(resource tidy)
Returns a TidyNode Object starting from the <BODY> tag of the tidy parse treeNOT IMPLEMENTED.
array tidy_get_config()
Get current Tidy configuarionNOT IMPLEMENTED.
string tidy_get_error_buffer([boolean detailed])
Return warnings and errors which occured parsing the specified documentNOT IMPLEMENTED.
TidyNode tidy_get_head()
Returns a TidyNode Object starting from the <HEAD> tag of the tidy parse treeNOT IMPLEMENTED.
TidyNode tidy_get_html()
Returns a TidyNode Object starting from the <HTML> tag of the tidy parse treeNOT IMPLEMENTED.
int tidy_get_html_ver()
Get the Detected HTML version for the specified document.NOT IMPLEMENTED.
string tidy_get_opt_doc(tidy resource, string optname)
Returns the documentation for the given option nameNOT IMPLEMENTED.
string tidy_get_output()
Return a string representing the parsed tidy markupNOT IMPLEMENTED.
string tidy_get_release()
Get release date (version) for Tidy libraryNOT IMPLEMENTED.
TidyNode tidy_get_root()
Returns a TidyNode Object representing the root of the tidy parse treeNOT IMPLEMENTED.
int tidy_get_status()
Get status of specfied document.NOT IMPLEMENTED.
mixed tidy_getopt(string option)
Returns the value of the specified configuration option for the tidy document.NOT IMPLEMENTED.
boolean tidy_is_xhtml()
Indicates if the document is a XHTML document.NOT IMPLEMENTED.
boolean tidy_is_xml()
Indicates if the document is a generic (non HTML/XHTML) XML document.NOT IMPLEMENTED.
boolean tidy_parse_file(string file [, mixed config_options [, string encoding [, bool use_include_path]]])
Parse markup in file or URINOT IMPLEMENTED.
bool tidy_parse_string(string input [, mixed config_options [, string encoding]])
Parse a document stored in a stringNOT IMPLEMENTED.
boolean tidy_repair_file(string filename [, mixed config_file [, string encoding [, bool use_include_path]]])
Repair a file using an optionally provided configuration fileNOT IMPLEMENTED.
boolean tidy_repair_string(string data [, mixed config_file [, string encoding]])
Repair a string using an optionally provided configuration fileNOT IMPLEMENTED.
int tidy_warning_count()
Returns the Number of Tidy warnings encountered for specified document.NOT IMPLEMENTED.


parrot