English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Basic PHP Tutorial

Advanced PHP Tutorial

PHP & MySQL

PHP Reference Manual

Usage and examples of PHP xml_set_end_namespace_decl_handler() function

PHP XML Function Manual

The xml_set_end_namespace_decl_handler() function is used to establish a termination namespace declaration handler.

Syntax

bool xml_set_end_namespace_decl_handler ( resource $parser , callable $handler )

Definition and usage

The handler to be called when setting the end namespace declaration range. This function is called after the handler of the end tag of the element that declares the namespace for each namespace declaration.

Return value

Returns True on success, false on failure

Parameter

Serial numberParameters and descriptions
1

parser

Reference to the XML parser.

2

handler

It is used to specify the function used as the event handler

PHP XML Function Manual