目录

PHP xml_set_start_namespace_decl_handler() 函数

❮ PHP XML 解析器参考


定义和用法

xml_set_start_namespace_decl_handler() 函数设置起始命名空间声明处理程序。

该函数指定声明命名空间时要调用的函数。

笔记:这个处理程序参数也可以是包含对象引用和方法名称的数组。

语法

xml_set_start_namespace_decl_handler( parser, handler)

参数值

Parameter Description
parser Required. Specifies the XML parser to use
handler Required. Specifies a function to be used as an event handler. The function must have three parameters:
  • $parser - A variable containing the XML parser calling the handler
  • $prefix - A variable containing a reference to the namespace within an XML object
  • $uri - The URI of the namspace

技术细节

返回值: 成功则为真。失败时为 FALSE
PHP 版本: 4.0.5+

❮ PHP XML 解析器参考