Re: [PHP] issues with __sleep() and __wakeup()

2001-08-01 Thread Thies C. Arntzen
On Tue, Jul 31, 2001 at 02:48:48PM -0600, mike cullerton wrote: > on 7/31/01 1:48 PM, scott [gts] at [EMAIL PROTECTED] wrote: > > > I am having a problem with __sleep(); > > there mere existance of it is causing my object > > to not get serialized at all. __wakeup() works fine. > > > > i am usi

Re: [PHP] issues with __sleep() and __wakeup()

2001-07-31 Thread mike cullerton
on 7/31/01 1:48 PM, scott [gts] at [EMAIL PROTECTED] wrote: > I am having a problem with __sleep(); > there mere existance of it is causing my object > to not get serialized at all. __wakeup() works fine. > > i am using PHP v4.0.6 / apache / win2k. > > If i keep __sleep() in the object, it wil

[PHP] issues with __sleep() and __wakeup()

2001-07-31 Thread scott [gts]
I am having a problem with __sleep(); there mere existance of it is causing my object to not get serialized at all. __wakeup() works fine. i am using PHP v4.0.6 / apache / win2k. If i keep __sleep() in the object, it will not serialize, but if i remove it, it serialized fine. Does anyone know