mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
02d6c259b9
ZTS and NTS now behave the same here, so reduce this back to a single test.
36 lines
569 B
PHP
36 lines
569 B
PHP
--TEST--
|
|
GC 029: GC and destructors
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
public $bar;
|
|
public $x = array(1,2,3);
|
|
function __destruct() {
|
|
if ($this->bar !== null) {
|
|
$this->x = null;
|
|
unset($this->bar);
|
|
}
|
|
}
|
|
}
|
|
class Bar {
|
|
public $foo;
|
|
function __destruct() {
|
|
if ($this->foo !== null) {
|
|
unset($this->foo);
|
|
}
|
|
}
|
|
|
|
}
|
|
$foo = new Foo();
|
|
$bar = new Bar();
|
|
$foo->bar = $bar;
|
|
$bar->foo = $foo;
|
|
unset($foo);
|
|
unset($bar);
|
|
var_dump(gc_collect_cycles());
|
|
?>
|
|
--EXPECTREGEX--
|
|
int\([23]\)
|