xml_set_character_data_handler
xml_set_character_data_handler
Set up character data handler
true **xml_set_character_data_handler** XMLParser $parser $handler
Sets the character data handler function for the XML parser
.
parser
handler
The signature of the handler must be:
```php
void **** XMLParser $parser string $data
`data`Character data as a string.
Character data handler is called for every piece of a text in the XML
document. It can be called multiple times inside each fragment (e.g.
for non-ASCII strings).
return.true.always