void characters(
resource
$parser, string
$data)
|
|
Method that gets invoked when the parser runs over CDATA.
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
method. That processes the given CDATA.
Tags:
Parameters:
void endElement(
object the
$parser, string
$name)
|
|
Method that gets invoked when the parser runs over a XML close element.
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
method.
Tags:
Parameters:
Entrypoint for parser. This method needs to be implemented by the
child classt that utilizes the concrete parser
Tags:
Overridden in child classes as:
- ExpatParser::parse()
- Starts the parsing process.
void startElement(
object the
$parser, string
$name, array
$attribs)
|
|
Method that gets invoked when the parser runs over a XML start element.
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
method.
Tags:
Parameters: