mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
31 lines
471 B
Plaintext
31 lines
471 B
Plaintext
|
--TEST--
|
||
|
Bug #69446 (GC leak relating to removal of nested data after dtors run)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$bar = NULL;
|
||
|
class bad {
|
||
|
public function __destruct() {
|
||
|
global $bar;
|
||
|
$bar = $this;
|
||
|
$bar->y = new stdClass;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$foo = new stdClass;
|
||
|
$foo->foo = $foo;
|
||
|
$foo->bad = new bad;
|
||
|
$foo->bad->x = new stdClass;
|
||
|
|
||
|
unset($foo);
|
||
|
gc_collect_cycles();
|
||
|
var_dump($bar);
|
||
|
--EXPECT--
|
||
|
object(bad)#2 (2) {
|
||
|
["x"]=>
|
||
|
object(stdClass)#3 (0) {
|
||
|
}
|
||
|
["y"]=>
|
||
|
object(stdClass)#4 (0) {
|
||
|
}
|
||
|
}
|