xml_set_unparsed_entity_decl_handler
xml_set_unparsed_entity_decl_handler
Set up unparsed entity declaration handler
true **xml_set_unparsed_entity_decl_handler** XMLParser $parser $handler
Sets the unparsed entity declaration handler function for the XML parser
.
parser
The will be called if the XML parser encounters an external entity declaration with an NDATA declaration, like the following:
`handler````php
name { NDATA <parameter>notationName</parameter>
See for the definition of notation declared
external entities.
section 4.2.2 of
the XML 1.0 spec
`handler`
The signature of the handler must be:
```php
void **** XMLParser $parser string $entity_name $base string $system_id $public_id $notation_name
entity_nameThe name of the entity that is about to be defined.
base
This is the base for resolving the system identifier
() of the external entity.
systemId
system_idSystem identifier for the external entity.
public_idPublic identifier for the external entity.
notation_name
Name of the notation of this entity (see
).
xml_set_notation_decl_handler
return.true.always