PHP.nl

xml_set_end_namespace_decl_handler

xml_set_end_namespace_decl_handler

Set up end namespace declaration handler

true **xml_set_end_namespace_decl_handler** XMLParser $parser  $handler

Set a handler to be called when leaving the scope of a namespace declaration. This will be called, for each namespace declaration, after the handler for the end tag of the element in which the namespace was declared.

Let op: > This event is not supported under libXML, so a registered handler wouldn't be called.

handler The signature of the handler must be:

  ```php

**** XMLParser $parser $prefix


`prefix`The prefix is a string used to reference the namespace within an XML object.
           false if no prefix exists.





return.true.always


   
  `xml_set_start_namespace_decl_handler`