ID: 48387
Updated by: [email protected]
Reported By: david at grudl dot com
Status: Assigned
Bug Type: SPL related
Operating System: *
PHP Version: 5.2.9
Assigned To: colder
New Comment:
For what it's worth, the reproduce code works perfectly fine with
php5.3.0
Previous Comments:
------------------------------------------------------------------------
[2009-05-25 15:46:56] david at grudl dot com
Description:
------------
In PHP 5.2.x there are not serialized any public/protected/private
properies of ArrayObject descendants.
Reproduce code:
---------------
class Test extends ArrayObject
{
public $var;
}
$test = new Test;
$test->var = 'hello';
$dolly = unserialize(serialize($test));
echo $dolly->var;
Expected result:
----------------
-> hello
Actual result:
--------------
none
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=48387&edit=1