php-src/Zend/tests/bug74053.phpt
2020-02-03 22:52:20 +01:00

44 lines
655 B
PHP

--TEST--
Bug #74053 (Corrupted class entries on shutdown when a destructor spawns another object)
--FILE--
<?php
class b {
function __destruct() {
echo "b::destruct\n";
}
}
class a {
static $b;
static $new;
static $max = 10;
function __destruct() {
if (self::$max-- <= 0) return;
echo "a::destruct\n";
self::$b = new b;
self::$new[] = new a;
}
}
new a;
?>
--EXPECT--
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct
a::destruct
b::destruct