summaryrefslogtreecommitdiff
path: root/ext/standard/tests/serialize/bug71995.phpt
blob: 0f7ac987222545106f1e8f916f87c647c0f51a2f (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 %sbug71995.php 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) {
  }
}