Query: xml_set_start_namespace_decl_handler
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
XML_SET_START_NAMESPACE_DECL_HANDLER(3) 1 XML_SET_START_NAMESPACE_DECL_HANDLER(3) xml_set_start_namespace_decl_handler - Set up start namespace declaration handlerSYNOPSISbool xml_set_start_namespace_decl_handler (resource $parser, callable $handler)DESCRIPTIONSet a handler to be called when a namespace is declared. Namespace declarations occur inside start tags. But the namespace declaration start handler is called before the start tag handler for each namespace declared in that start tag.PARAMETERSo $parser - A reference to the XML parser. o $handler -$handler is a string containing the name of a function that must exist when xml_parse(3) is called for $parser. The function named by $handler must accept three parameters, and should return an integer value. If the value returned from the handler is FALSE (which it will be if no value is returned), the XML parser will stop parsing and xml_get_error_code(3) will return XML_ERROR_EXTERNAL_ENTITY_HANDLING. handler (resource $parser, string $prefix, string $uri) o $parser - The first parameter, parser, is a reference to the XML parser calling the handler. o $prefix - The prefix is a string used to reference the namespace within an XML object. o $uri - Uniform Resource Identifier (URI) of namespace. If a handler function is set to an empty string, or FALSE, the handler in question is disabled. Note Instead of a function name, an array containing an object reference and a method name can also be supplied.RETURN VALUESReturns TRUE on success or FALSE on failure.SEE ALSOxml_set_end_namespace_decl_handler(3). PHP Documentation Group XML_SET_START_NAMESPACE_DECL_HANDLER(3)
Related Man Pages |
---|
tdomcmd(3tcl) - debian |
tdomcmd(n) - suse |
xml_parse(3) - php |
xml_parser_create_ns(3) - php |
xml_set_object(3) - php |
Similar Topics in the Unix Linux Community |
---|
When is SIGCHLD is raised. |
Really basic question.... |
flex++ parser for HP-UX11 |
Where would you start? (question for the programmer / hacker) |
Tnanames.ora parser |