mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
45f7b2bcc8
Also fix a single instance of CRLF in ibase_query.c.
23 lines
273 B
PHP
23 lines
273 B
PHP
--TEST--
|
|
Bug #72918 (negative offset inside a quoted string leads to parse error)
|
|
--FILE--
|
|
<?php
|
|
$array = [-3 => 'foo'];
|
|
$string = 'abcde';
|
|
|
|
echo "$array[-3]\n";
|
|
echo "$string[-3]\n";
|
|
echo <<<EOT
|
|
$array[-3]
|
|
$string[-3]
|
|
|
|
EOT;
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
foo
|
|
c
|
|
foo
|
|
c
|
|
===DONE===
|