mirror of
https://github.com/php/php-src.git
synced 2024-12-02 06:13:40 +08:00
22 lines
478 B
Plaintext
22 lines
478 B
Plaintext
|
--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='')
|
||
|
{
|
||
|
$errcontext = '';
|
||
|
}
|
||
|
|
||
|
set_error_handler('my_error_handler');
|
||
|
|
||
|
function test()
|
||
|
{
|
||
|
echo "Undefined index here: '{$data['HTTP_HEADER']}'\n";
|
||
|
}
|
||
|
test();
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
Undefined index here: ''
|