mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
22 lines
370 B
PHP
22 lines
370 B
PHP
--TEST--
|
|
Const array deference
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
var_dump(array(1, 2, 3, 4,) [3]);
|
|
var_dump(array(1, 2, 3, 4,) ['foo']);
|
|
var_dump(array(array(1,2,3), array(4, 5, 6))[1][2]);
|
|
|
|
foreach (array(array(1, 2, 3))[0] as $var) {
|
|
echo $var;
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
int(4)
|
|
|
|
Notice: Undefined index: foo in %sconst_dereference_001.php on line %d
|
|
NULL
|
|
int(6)
|
|
123
|