mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
20 lines
231 B
PHP
20 lines
231 B
PHP
--TEST--
|
|
GC 036: Memleaks in self-referenced array
|
|
--INI--
|
|
zend.enable_gc = 1
|
|
--FILE--
|
|
<?php
|
|
function &foo() {
|
|
$a = [];
|
|
$a[] =& $a;
|
|
return $a;
|
|
}
|
|
function bar() {
|
|
gc_collect_cycles();
|
|
}
|
|
bar(foo());
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|