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 — デフォルトのハンドラを設定する
XMLパーサ parser
のデフォルトのハンドラ関数を設定します。
parser
デフォルトのハンドラ関数を設定する XML パーサへの参照。
handler
handler
は、
parser
に関して xml_parse()
がコールされた際に必要な関数の名前を有する文字列です。
handler
という名前の関数は、
次の 2 つのパラメータをとる必要があります。
parser
data
data
は、
文字データを有しています。これは、XML 宣言またはドキュメント型宣言、エンティティ、
他にハンドラがない別のデータとすることが可能です。
ハンドラ関数が空の文字列または、false
に設定されている場合、そのハンドラは無効です。
注意: 関数名の代わりに、オブジェクトへの リファレンスを格納した配列とメソッド名を指定することもできます。
成功した場合に true
を、失敗した場合に false
を返します。
バージョン | 説明 |
---|---|
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.