mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +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
272 B
PHP
23 lines
272 B
PHP
--TEST--
|
|
Bug #35163.2 (Array elements can lose references)
|
|
--FILE--
|
|
<?php
|
|
$a = array(1);
|
|
$b = 'a';
|
|
${$b}[] =& $$b;
|
|
${$b}[] =& $$b;
|
|
${$b}[0] = 2;
|
|
var_dump($a);
|
|
$a[0] = null;
|
|
$a = null;
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
[0]=>
|
|
int(2)
|
|
[1]=>
|
|
*RECURSION*
|
|
[2]=>
|
|
*RECURSION*
|
|
}
|