php_tidy.pir - PHP tidy Library
tidyNode tidyNode::getParent()
- Returns the parent node if available or NULL
- NOT IMPLEMENTED.
boolean tidyNode::hasChildren()
- Returns true if this node has children
- NOT IMPLEMENTED.
boolean tidyNode::hasSiblings()
- Returns true if this node has siblings
- NOT IMPLEMENTED.
boolean tidyNode::isAsp()
- Returns true if this node is ASP
- NOT IMPLEMENTED.
boolean tidyNode::isComment()
- Returns true if this node represents a comment
- NOT IMPLEMENTED.
boolean tidyNode::isHtml()
- Returns true if this node is part of a HTML document
- NOT IMPLEMENTED.
boolean tidyNode::isJste()
- Returns true if this node is JSTE
- NOT IMPLEMENTED.
boolean tidyNode::isPhp()
- Returns true if this node is PHP
- NOT 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 markup
- NOT 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 tree
- NOT IMPLEMENTED.
array tidy_get_config()
- Get current Tidy configuarion
- NOT IMPLEMENTED.
string tidy_get_error_buffer([boolean detailed])
- Return warnings and errors which occured parsing the specified document
- NOT IMPLEMENTED.
TidyNode tidy_get_head()
- Returns a TidyNode Object starting from the <HEAD> tag of the tidy parse tree
- NOT IMPLEMENTED.
TidyNode tidy_get_html()
- Returns a TidyNode Object starting from the <HTML> tag of the tidy parse tree
- NOT 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 name
- NOT IMPLEMENTED.
string tidy_get_output()
- Return a string representing the parsed tidy markup
- NOT IMPLEMENTED.
string tidy_get_release()
- Get release date (version) for Tidy library
- NOT IMPLEMENTED.
TidyNode tidy_get_root()
- Returns a TidyNode Object representing the root of the tidy parse tree
- NOT 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 URI
- NOT IMPLEMENTED.
bool tidy_parse_string(string input [, mixed config_options [, string encoding]])
- Parse a document stored in a string
- NOT IMPLEMENTED.
boolean tidy_repair_file(string filename [, mixed config_file [, string encoding [, bool use_include_path]]])
- Repair a file using an optionally provided configuration file
- NOT IMPLEMENTED.
boolean tidy_repair_string(string data [, mixed config_file [, string encoding]])
- Repair a string using an optionally provided configuration file
- NOT IMPLEMENTED.
int tidy_warning_count()
- Returns the Number of Tidy warnings encountered for specified document.
- NOT IMPLEMENTED.