xml_set_default_handler

(PHP 3 >= 3.0.6, PHP 4, PHP 5)

xml_set_default_handler -- 建立默认处理器

说明

bool xml_set_default_handler ( resource parser, callback handler )

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

handler 参数命名的函数名必须接受两个参数: handler ( resource parser, string data )

parser

第一个参数 parser 为指向要调用处理器的 XML 解析器的指针。

data

第二个参数 data 为包含有字符数据的字符串。其内容可以是 XML 声明、文档类型声明、实体名或者其它没有已存在处理器的地数据。

如果处理器函数名被设置为空字符串或者 FALSE,则该有问题的处理器将被屏蔽。

如果处理器被成功的建立,该函数将返回 TRUE,如果 parser 指向的不是合法的解析器,函数该函数将返回 FALSE

注: 除了函数名,还可以用一个数组作参数,该数组由一个对象名和该对象的一个方法名两个元素组成。


add a note add a note User Contributed Notes
anoril at anoril dot com
13-Jul-2006 10:54
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.
phillip
27-Apr-2005 05:13
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.