HTML Parser
All the parsing code by Michael Vogel <http://www.dabo.de/software/>
Located in Program_Root/HTML_Parser.php (line 11)
Buffer
Callback object
Case sensitive
Character data handler
Comment handler
Doctype handler
End element handler
End of file
Ignore level
Used to determine if an element/cdata should be reported or not
Ignore tags
In handler
Last element
Processing instruction handler
Report level
Used to determine if an element/cdata should be reported or not
Report tags
Start element handler
Get last element
Returns name of last element passed to start element handler, and before a call to end element handler (which sets the last element to null)
Parse
set to true if $input is the last chunk of the document.
Set case sensitive
By default, tagnames and attribute names are passed to callback functions as lowercase. Passing true to this method will leave them as found in the HTML source. Note: As other HTML_Parser methods rely on this option, it's important that this is set as soon as a HTML_Parser instance has been created.
Set character data handler
Pass empty string or false to disable handler
Set comment handler
Set doctype handler
Pass empty string or false to disable handler
Set element handler (start and end tags)
Pass empty string or false to disable a handler
Set end element handler
Pass empty string or false to disable handler
Set ignore elements
Any elements added and found in the HTML will not be reported (no calls to the start, end, or character data handler will be made for the ignored tag). Note: This method is affected by the set_case_sensitive() method.
string for a single tag name, array for multiple tag names, null to reset list
Set ignore tags
Any tags added and found in the HTML will not be reported (no calls to the start or end tag handler will be made for the ignored tag). Note: This method is affected by the set_case_sensitive() method.
string for a single tag name, array for multiple tag names, null to reset list
Set object for callback methods
Set processing instruction handler
Pass empty string or false to disable handler
Set report elements
Only elements given here will be reported, any others will be ignored. This method overrides the set_ignore_elements() method. Note: This method is affected by the set_case_sensitive() method.
string for a single tag name, array for multiple tag names, null to reset list
Set report tags
Only tags given here will be reported, any other tags will be ignored. This method overrides the set_ignore_tags() method. Note: This method is affected by the set_case_sensitive() method.
string for a single tag name, array for multiple tag names, null to reset list
Set start element handler
Pass empty string or false to disable handler
Documention generated on Wed, 16 Jul 2003 01:03:15 +0100 by phpDocumentor 1.2.0