mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
19 lines
246 B
PHP
19 lines
246 B
PHP
--TEST--
|
|
Bug #39018 [2] (Error control operator '@' fails to suppress "Uninitialized string offset")
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
$foo = 'test';
|
|
$x = @$foo[6];
|
|
|
|
print @($foo[100] + $foo[130]);
|
|
|
|
print "\nDone\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
0
|
|
Done
|