mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
af3f48b7e1
versions used to create the language parser.
14 lines
318 B
PHP
14 lines
318 B
PHP
--TEST--
|
|
Bug #21820 ("$arr['foo']" generates bogus E_NOTICE, should be E_PARSE)
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
$arr = array('foo' => 'bar');
|
|
echo "$arr['foo']";
|
|
|
|
?>
|
|
--EXPECTREGEX--
|
|
Parse error: (parse|syntax) error, .*expecting `?T_STRING'? or `?T_VARIABLE'? or `?T_NUM_STRING'? in .*bug21820.php on line .*
|