ID:               45416
 Comment by:       tinozangerle at aol dot com
 Reported By:      tinozangerle at aol dot com
 Status:           Open
 Bug Type:         Class/Object related
 Operating System: Linux
 PHP Version:      5.2.6
 New Comment:

Ok, well I see.
When I serialize the referenced object it save the complete object.
On unserializing the object the referenced object will be wakeup.
Well, I'll add a sleep function with all variables and will delete the
refernced object.

Tino


Previous Comments:
------------------------------------------------------------------------

[2008-07-02 12:19:27] tinozangerle at aol dot com

Description:
------------
__wakeup is called twice, the same object

Reproduce code:
---------------
http://nopaste.php-quake.net/36927

Expected result:
----------------
2
object(a)#1 (2) 
  { ["foo:private"]=> 
      int(1) 
    ["bar:private"]=> string(5) "hello" 
  } 

object(b)#2 (1) 
{ 
  ["a:private"]=> &object(a)#1 (2) 
   { ["foo:private"]=>int(1) 
     ["bar:private"]=>string(5) "hello" } 
} 
hello

Actual result:
--------------
22
hello
object(a)#1 (2) 
  { ["foo:private"]=> 
      int(1) 
    ["bar:private"]=> string(5) "hello" 
  } 

object(b)#2 (1) 
{ 
  ["a:private"]=> &object(a)#1 (2) 
   { ["foo:private"]=>int(1) 
     ["bar:private"]=>string(5) "hello" } 
} 
hello


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=45416&edit=1

Reply via email to