File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / serialize / bug35895.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 01:32:09 2013 UTC (11 years ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17, HEAD
5.4.17

--TEST--
Bug #35895 (__sleep and private property)
--FILE--
<?php
class Parents {
   private $parents;
   public function __sleep() {
       return array("parents");
   }
}

class Child extends Parents {
    private $child;
    public function __sleep() {
        return array_merge(array("child"), parent::__sleep());
    }
}

$obj = new Child();
serialize($obj);

?>
--EXPECTF--
Notice: serialize(): "parents" returned as member variable from __sleep() but does not exist in %sbug35895.php on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>