xml_set_default_handler

(PHP 4, PHP 5, PHP 7, PHP 8)

xml_set_default_handler建立默认处理程序

说明

xml_set_default_handler(XMLParser $parser, callable $handler): true

parser 指定的 XML 处理程序建立默认处理函数。

参数

parser

XML 解析器的引用,用于建立默认处理函数。

handler

handler 为表示一个函数名称的字符串,该函数必须在为 parser 指定的解析器调用 xml_parse() 函数时已存在。

handler 参数命名的函数名必须接受两个参数:

handler(XMLParser $parser, string $data)
parser
第一个参数 parser 为指向要调用处理程序的 XML 解析器的指针。
data
第二个参数 data 为包含有字符数据的字符串。其内容可以是 XML 声明、文档类型声明、实体名或者其它没有已存在处理程序的地数据。

如果处理程序名被设置为空字符串或者 false,则该有问题的处理程序将被屏蔽。

注意: 除了函数名,含有对象引用的数组和方法名也可以作为参数。

返回值

总是返回 true

更新日志

版本 说明
8.0.0 parser 现在接受 XMLParser 实例;之前接受有效的 xml resource
add a note add a note

User Contributed Notes 2 notes

up
-2
anoril at anoril dot com
16 years ago
I have the same issue using two installation of PHP5: on accepts to use the default handler while the other only uses the character_data one.

Maybe a configuration problem...

;) Nonor.
up
-2
phillip
18 years ago
it seems to me that in PHP5 the function defined as default-handler (using xml_set_default_handler()) doesen't get passed the cdata anymore:

i.e.:
xml_set_element_handler($this->parser, 'parseSTART', 'parseEND');
xml_set_default_handler($this->parser, 'parseDEFAULT');
function parseSTART() { ... }
function parseEND() { ... }
function parseDEFAULT() { ... }

under PHP5, parseDEFAULT will NOT get passed any cdata, but unter PHP4 it will. at least that's my take on the strange stuff (not) happening after migrating to PHP5.

my solution was to add a xml_set_character_data_handler($parser, 'parseDEFAULT'). it worked for me.
To Top