xml_set_notation_decl_handler
xml_set_notation_decl_handler
Set up notation declaration handler
true **xml_set_notation_decl_handler** XMLParser $parser $handler
Sets the notation declaration handler function for the XML parser
.
parser
A notation declaration is part of the document's DTD and has the following format:
See for the definition of notation declarations.
<!NOTATION <parameter>name</parameter>
{ <parameter>systemId</parameter> | <parameter>publicId</parameter>?>
section 4.7 of the XML 1.0 spec
handler
The signature of the handler must be:
```php
void **** XMLParser $parser string $notation_name $base string $system_id $public_id
`notation_name`This is the notation's name, as per
the notation format described above.
`base`
This is the base for resolving the system identifier
() of the notation declaration.
`system_id`
`system_id`System identifier of the external notation declaration.
`public_id`Public identifier of the external notation declaration.
return.true.always