September 2001
Intermediate to advanced
768 pages
32h 45m
English
int xml_set_character_data_handler(resource parserID, string handler)
| parserID | Reference to a valid parser |
| handler | Function to be used as an event handler |
Sets the character handler for the specified XML parser.
Returns:
TRUE on success; FALSE on error
Description:
Handles data for all non-markup content; see the example code. Setting the handler to FALSE or an empty string disables the handler. The function returns FALSE if the parser is invalid or the handler was not created.
The function prototype should have the following parameters:
| Parameter | Description |
|---|---|
| parser | Reference to the XML parser that uses this function |
| data | Character data |
Version:
PHP 3 >= 3.0.6, PHP 4 >= 4.0b1
Example:
Read now
Unlock full access