[PHP] Re: serialize an object

2007-04-19 Thread Tobias Wurst
i think I "found" a bug: http://bugs.php.net/bug.php?id=36172 i used __sleep and __wakeup -> don't work without __sleep and __wakeup -> it is working :) >you don't need this. php serializes your objects for you thats true, thanks :) -- PHP General Mailing List (http://www.php.net/) To unsubs

[PHP] Re: serialize an object

2007-04-19 Thread for
On 19.04.2007 13:17 Tobias Wurst wrote: hi, i use serialize() to save my object in $_SESSION. you don't need this. php serializes your objects for you But i have one Problem: the member-variables from the baseclass are not saved.. :( How can i fix this? can you provide a small example? t