1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00
Files
Gina Peter Banyard 5dae1e1dc2 Split var_dump tests
So that these aren't huge mega tests
2025-03-13 15:00:07 +00:00

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*
}
}