1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 15:12:39 +02:00
Files
archived-php-src/Zend/tests/dereference_009.phpt

27 lines
283 B
PHP

--TEST--
Testing array dereference with references
--FILE--
<?php
error_reporting(E_ALL);
$a = array();
function &a() {
return $GLOBALS['a'];
}
var_dump($h =& a());
$h[] = 1;
var_dump(a()[0]);
$h[] = array($h);
var_dump(a()[1][0][0]);
?>
--EXPECT--
array(0) {
}
int(1)
int(1)