The abstract SAX parser class.
This class represents a SAX parser. It is a abstract calss that must be implemented by the real parser that must extend this class
author |
Andreas Aderhold andi@binarycloud.com |
---|---|
author |
Hans Lellelid hans@xmpl.org |
copyright |
2001,2002 THYRELL. All rights reserved |
version |
$Id: d35d8cfd51732f1a31ce4dcf003a2f46726df082 $ |
package |
phing.parser |
__construct()
characters(resource $parser, string $data)
This method is called by PHP's internal parser functions and registered in the actual parser implementation.
It gives control to the current active handler object by calling the
characters()
method. That processes the given CDATA.
throws |
|
---|---|
resource
php's internal parser handle.
string
the CDATA
endElement( $parser, $name)
This method is called by PHP's internal parser funcitons and registered in the actual parser implementation.
It gives control to the current active handler object by calling the
endElement()
method.
throws |
|
---|---|
parse()
parserSetOption( $opt, $val)
setHandler(\AbstractHandler $obj)
startElement( $parser, $name, $attribs)
This method is called by PHP's internal parser functions and registered
in the actual parser implementation.
It gives control to the current active handler object by calling the
startElement()
method.
throws |
|
---|---|
handler :