summaryrefslogtreecommitdiff
path: root/Zend/tests/bug63206_1.phpt
blob: d0542116388ba94d0dd643c8ebd4202521eca056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Bug #63206 Fully support error_handler stacking, even with null
--FILE--
<?php

set_error_handler(function() {
    echo 'First handler' . PHP_EOL;
});

set_error_handler(function() {
    echo 'Second handler' . PHP_EOL;
});

set_error_handler(null);

set_error_handler(function() {
    echo 'Fourth handler' . PHP_EOL;
});

restore_error_handler();
restore_error_handler();

$triggerNotice++;
?>
--EXPECT--
Second handler