Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-27 Thread Andrei Zmievski
On Fri, 27 Sep 2002, Wez Furlong wrote: > Is that meant to be a compliment?? :-) God, no. -Andrei http://www.gravitonic.com/ * How would this sentence be different if Pi was equal to three? * -- PHP Development Mailing List To unsubsc

Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-27 Thread Wez Furlong
On 27/09/02, "Andrei Zmievski" <[EMAIL PROTECTED]> wrote: > May you watch Battlefield: Earth 10 times in a row. Is that meant to be a compliment?? :-) --Wez. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-27 Thread Andrei Zmievski
On Fri, 27 Sep 2002, Jan Lehnardt wrote: > what about wddx_serialize($complex_var, array( > WDDX_EMPTY, > ... > WDDX_HASH => array( >

Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-27 Thread Jan Lehnardt
Hi, On Fri, Sep 27, 2002 at 11:15:59PM +0800, Jimmy wrote: > > $complex_var = array ( >0 => 'nothing', > 'MyOS' => array('linux', 'win32', 'BSDI'), // normal array > 'hash' => array('key' => 'val', > 'key2' => 'val' ), //assoc array > 'file' => "contain unicode

Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-27 Thread Jimmy
Hi Andrei, > I think it's a good idea. The only problem I see is making it work with > all three serialization functions. wddx_serialize_value() is fine, but > wddx_serialize_vars() and wddx_add_vars() take variable number of > arguments, so it's not clear how it would work in those cases. Yup,

Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-27 Thread Andrei Zmievski
On Thu, 26 Sep 2002, Jimmy wrote: > For example: > > $string = "1"; > wddx_serialize($string, WDDX_INTEGER); > // var $string will be encoded as integer, instead of string > > $file_name = "contain some unicode char"; > wddx_serialize($file_name, WDDX_BINARY); > // var $file_name will be encoded

Re: [PHP-DEV] feedback on PHP's WDDX

2002-09-26 Thread Jan Lehnardt
Hi, can you please file a bugreport on bugs.php.net and assign it to me (cvs id is jan). I'll look into this.> Jan -- Q: Thank Jan? A: http://geschenke.an.dasmoped.net/ Got an old and spare laptop? Please send me a mail. Key7BCC EB86 8313 DDA9 25DF Fingerprint

[PHP-DEV] feedback on PHP's WDDX

2002-09-26 Thread Jimmy
Hi, I am using PHP's WDDX and find it very useful, but that's only if I use it to exchange data between PHP program. Once I have to exchange the data with other languange I begin to face problem after problem, mostly because of the way PHP's WDDX interpret the variable type. The solution for thi