mirror of
https://github.com/php/php-src.git
synced 2026-04-26 01:18:19 +02:00
5dae1e1dc2
So that these aren't huge mega tests
21 lines
204 B
PHP
21 lines
204 B
PHP
--TEST--
|
|
Test var_dump() function with circular array
|
|
--FILE--
|
|
<?php
|
|
|
|
$a1 = [];
|
|
$a2 = [&$a1];
|
|
$a1[] =& $a2;
|
|
|
|
var_dump($a2);
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[0]=>
|
|
&array(1) {
|
|
[0]=>
|
|
*RECURSION*
|
|
}
|
|
}
|