summaryrefslogtreecommitdiff
path: root/tests/lang/bug25922.phpt
blob: bb030c9df834cdf5c79bb9647c55c046cd3044c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--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
Undefined index here: ''