(PHP 4, PHP 5, PHP 7, PHP 8)
xml_set_default_handler — Set up default handler
Sets the default handler function for the XML parser
parser
.
parser
O analisador XML.
handler
Se null
ou uma string vazia for passada, o manipulador será redefinido para seu estado padrão.
Se handler
for um callable,
o callable será definido como o manipulador.
Se handler
for uma string,
ela pode ser o nome de um método de um objet definido com
xml_set_object().
The signature of the handler must be:
parser
data
data
contains the character data.
This may be the XML declaration, document type declaration,
entities or other data for which no other handler exists.
Sempre retorna true
.