(PHP 4, PHP 5, PHP 7)
Set up notation declaration handler
bool xml_set_notation_decl_handler ( resource $parser, callable $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:
<!NOTATION <parameter>name</parameter>
{ <parameter>systemId</parameter> | <parameter>publicId</parameter>?> » section 4.7 of the XML 1.0 spec
Parameters:
parser
A reference to the XML parser to set up notation declaration handler function.
handler
handler is a string containing the name of a function that must exist when xml_parse() is called for parser.
The function named by handler must accept five parameters:
handler ( resource
$parser , string $notation_name , string $base , string $system_id , string $public_id )Returns:
Returns TRUE on success or FALSE on failure.
Please login to continue.