mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
ae6f45ad45
This is confusing. The current output doesn't make it clear that we're in fact recursing to the top-level structure. Closes GH-5171.
23 lines
290 B
PHP
23 lines
290 B
PHP
--TEST--
|
|
GC 007: Unreferenced array cycle
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--FILE--
|
|
<?php
|
|
$a = array(array());
|
|
$a[0][0] =& $a[0];
|
|
var_dump($a[0]);
|
|
var_dump(gc_collect_cycles());
|
|
unset($a);
|
|
var_dump(gc_collect_cycles());
|
|
echo "ok\n"
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[0]=>
|
|
*RECURSION*
|
|
}
|
|
int(0)
|
|
int(1)
|
|
ok
|