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 — Öntanımlı işleyiciyi belirler
ayrıştırıcı
ile belirtilen XML ayrıştırıcı için
öntanımlı işleyici belirler.
ayrıştırıcı
XML ayrıştırıcı.
işleyici
null
veya boş dizge belirtilirse işleyici bunu varsayılan duruma getirir.
işleyici
callable türündeyse,
işleyici işlev olarak kullanılır.
işleyici
string türündeyse,
xml_set_object() ile atanmış bir nesnenin
yöntem ismi olabilir.
İsmi işleyici
ile belirtilen işlevin şuna benzemesi gerekir:
ayrıştırıcı
veri
veri
, karakter verisini içerir. Dizge,
XML bildirimi, belge türü bildirimi veya diğer işleyiciler
tarafından ele alınmayan başka bir verileri içerebilir.
Daima true
döndürür.
Sürüm: | Açıklama |
---|---|
8.0.0 |
ayrıştırıcı artık bir XMLParser
örneği olabiliyor; evvelce resource türünde geçerli bir
xml değeri kabul ederdi.
|
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.