mirror of
https://github.com/php/php-src.git
synced 2026-03-30 12:13:02 +02:00
No notice is thrown for list() accesses, because we did not come
to an agreement regarding patterns like
while ([$key, $value] = yield $it->next()) { ... }
where silent null access may be desirable.
No effort is made to suppress multiple notices in access chains
likes $x[0][0][0], because the technical complexity this causes
does not seem worthwhile.
RFC: https://wiki.php.net/rfc/notice-for-non-valid-array-container
25 lines
486 B
PHP
25 lines
486 B
PHP
--TEST--
|
|
Bug #25922 (SEGV in error_handler when context is destroyed)
|
|
--INI--
|
|
error_reporting=2047
|
|
--FILE--
|
|
<?php
|
|
function my_error_handler($error, $errmsg='', $errfile='', $errline=0, $errcontext='')
|
|
{
|
|
echo "$errmsg\n";
|
|
$errcontext = '';
|
|
}
|
|
|
|
set_error_handler('my_error_handler');
|
|
|
|
function test()
|
|
{
|
|
echo "Undefined index here: '{$data['HTTP_HEADER']}'\n";
|
|
}
|
|
test();
|
|
?>
|
|
--EXPECT--
|
|
Undefined variable: data
|
|
Trying to access array offset on value of type null
|
|
Undefined index here: ''
|