Re: [PHP-DOC] libxml

2004-08-11 Thread Jakub Vrana
moshe doron wrote: > you may didn't use the same chars due to your news client encoding > conversion. try to iconv chr(224); The same: >> It behaves the same in PHP 5.0.0 and PHP 4.3.8 on my box (Windows XP). >> Notice is issued and illegal characters are not translated. Jakub Vrana

Re: [PHP-DOC] libxml

2004-08-10 Thread moshe doron
you may didn't use the same chars due to your news client encoding conversion. try to iconv chr(224); -- Moshe. "Jakub Vrana" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] moshe doron wrote: > sorry, wrong target. > anyway on win32, with php5.0.0 the function return empty string whil

Re: [PHP-DOC] libxml

2004-08-09 Thread Jakub Vrana
moshe doron wrote: > sorry, wrong target. > anyway on win32, with php5.0.0 the function return empty string while on > php4 it return notice. the iconv("WINDOWS-1255", "UTF-8"... which is what > libxml suppse to do is working nice on win32 php. > we still trying to figure out what going here. >> e

Re: [PHP-DOC] libxml

2004-08-09 Thread moshe doron
sorry, wrong target. anyway on win32, with php5.0.0 the function return empty string while on php4 it return notice. the iconv("WINDOWS-1255", "UTF-8"... which is what libxml suppse to do is working nice on win32 php. we still trying to figure out what going here. Moshe. "Derick Rethans" <[EMAIL

Re: [PHP-DOC] libxml

2004-08-09 Thread Derick Rethans
On Mon, 9 Aug 2004, Gabor Hojtsy wrote: > > libxml use iconv that seems to be broken: > > > > echo iconv("WINDOWS-1255", "ISO-8859-1", ""); > > > > please check what the problem here. (you can use c iconv() function that > > compiled into libc on dev1). > > What do you expect when converting t

Re: [PHP-DOC] libxml

2004-08-09 Thread Gabor Hojtsy
> libxml use iconv that seems to be broken: > > echo iconv("WINDOWS-1255", "ISO-8859-1", "אבגד"); > > please check what the problem here. (you can use c iconv() function that > compiled into libc on dev1). What do you expect when converting to latin-1 such chars which are not there? Goba

[PHP-DOC] libxml

2004-08-09 Thread moshe doron
libxml use iconv that seems to be broken: echo iconv("WINDOWS-1255", "ISO-8859-1", "אבגד"); please check what the problem here. (you can use c iconv() function that compiled into libc on dev1). moshe.