mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
26 lines
344 B
PHP
26 lines
344 B
PHP
--TEST--
|
|
Bug #35163.3 (Array elements can lose references)
|
|
--FILE--
|
|
<?php
|
|
$a = new stdClass;
|
|
$a->b = array(1);
|
|
$a->b[] =& $a->b;
|
|
$a->b[] =& $a->b;
|
|
$a->b[0] = 2;
|
|
var_dump($a);
|
|
$a->b = null;
|
|
$a = null;
|
|
?>
|
|
--EXPECTF--
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
&array(3) {
|
|
[0]=>
|
|
int(2)
|
|
[1]=>
|
|
*RECURSION*
|
|
[2]=>
|
|
*RECURSION*
|
|
}
|
|
}
|