[PHP-DEV] __sleep and hidden variables

2004-12-12 Thread Alan Knowles
I'm trying to serialize DBDO objects, which contain alot of hidden information at present, within the bound object. looking at the serialization code, it appears to only access the zval.value.obj.properties directly, rather than calling the property_read handler on the object. - are there any

RE: [PHP-DEV] ./configure, PHP, SuSE and the AMD64

2004-12-12 Thread Hans Zaunere
I've committed the core changes to add --with-libdir and updated most of the extensions which I could test here. Hans, can you test out HEAD on your SLES box? You should just use --with-libdir=lib64 and then e.g. --with-mysql=/usr will correctly pick up the system MySQL libraries in

RE: [PHP-DEV] ./configure, PHP, SuSE and the AMD64

2004-12-12 Thread Hans Zaunere
-- the latest RCs of both 4.3.10 and 5.0.3 work properly, and will always use libs in /lib64 or /usr/lib64, and ./configure and compile work correctly. Interesting to hear that 4.3.10 works as it hasn't been touched at all? (I might have missed some fix, but AFAICT, this was only

Re: [PHP-DEV] __sleep and hidden variables

2004-12-12 Thread Marcus Boerger
Hello Alan, the current plan is to write two new handlers that store/read the object from a string and have the old handlers as a fallback if implemented. regards marcus Sunday, December 12, 2004, 2:41:50 PM, you wrote: I'm trying to serialize DBDO objects, which contain alot of hidden