/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
Zend
/
tests
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/Zend/tests/bug47343.phpt
--TEST-- Bug #47343 (gc_collect_cycles causes a segfault when called within a destructor in one case) --FILE-- <?php class A { public function __destruct() { gc_collect_cycles(); } public function getB() { $this->data['foo'] = new B($this); $this->data['bar'] = new B($this); // Return either of the above return $this->data['foo']; } } class B { public function __construct($A) { $this->A = $A; } public function __destruct() { } } for ($i = 0; $i < 2; $i++) { $Aobj = new A; $Bobj = $Aobj->getB(); unset($Bobj); unset($Aobj); } echo "DONE\n"; ?> --EXPECT-- DONE
Copyright ©2k19 -
Hexid
|
Tex7ure