summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug69108.phpt
blob: 1829e9b2a253b098c04bf49f8809544c4897b7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Bug #69108 ("Segmentation fault" when (de)serializing SplObjectStorage)
--INI--
zend.enable_gc=1
--FILE--
<?php
$a = array();
$b = new SplObjectStorage();
for ($i = 10000; $i > 0; $i--) {
	    $object = new StdClass();
		    $a[] = $object;
		    $b->attach($object);
}

$c = serialize(array($a, $b));
$d = unserialize($c);

unset($d);
echo "ok";
?>
--EXPECT--
ok