summaryrefslogtreecommitdiff
path: root/ext/standard/tests/serialize/bug71995.phpt
blob: bf62c7da1eea8e2a609789a4e98db402ad69c246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--TEST--
Bug #71995 (Returning the same var twice from __sleep() produces broken serialized data)
--FILE--
<?php

class A {
    public $b;
    public function __construct() {
        $this->b = new StdClass();
    }
    public  function __sleep() {
        return array("b", "b");
    }
}
$a = new A();
$s = serialize($a);
var_dump($s);
var_dump(unserialize($s));
?>
--EXPECTF--
Notice: serialize(): "b" is returned from __sleep() multiple times in %s on line %d
string(39) "O:1:"A":1:{s:1:"b";O:8:"stdClass":0:{}}"
object(A)#%d (1) {
  ["b"]=>
  object(stdClass)#%d (0) {
  }
}