]> granicus.if.org Git - php/commitdiff
Add test for #35895
authorXinchen Hui <laruence@php.net>
Mon, 1 Oct 2012 16:27:35 +0000 (00:27 +0800)
committerXinchen Hui <laruence@php.net>
Mon, 1 Oct 2012 16:27:35 +0000 (00:27 +0800)
ext/standard/tests/serialize/bug35895.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/serialize/bug35895.phpt b/ext/standard/tests/serialize/bug35895.phpt
new file mode 100644 (file)
index 0000000..22fce0d
--- /dev/null
@@ -0,0 +1,24 @@
+--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