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.
(PHP 4, PHP 5, PHP 7, PHP 8)
xml_set_default_handler — 建立默认处理程序
为 parser
指定的 XML 处理程序建立默认处理函数。
parser
XML 解析器。
handler
如果传递 null
或空字符串,处理程序将重置为其默认状态。
如果 handler
是 callable,设置的 callable 将作为处理程序。
如果 handler
是 string,它可以是 xml_set_object()
设置的对象的方法名称。
处理程序的签名必须是:
parser
data
data
包含字符数据。可以是 XML 声明、文档类型声明、实体名或者其它没有已存在处理程序的数据。
总是返回 true
。
版本 | 说明 |
---|---|
8.0.0 |
parser 现在接受 XMLParser 实例;之前接受有效的 xml resource。
|
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.
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.