summaryrefslogtreecommitdiff
path: root/Zend/tests/bug35017.phpt
blob: 0b9e9a95e2c4aa855aab7e56890283a8c1ea3b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #35017 (Exception thrown in error handler may cause unexpected behavior)
--FILE--
<?php
set_error_handler('errorHandler');
try {
    if ($a) {
        echo "1\n";
    } else {
        echo "0\n";
    }
    echo "?\n";
} catch(Exception $e) {
  echo "This Exception should be caught\n";
}
function errorHandler($errno, $errstr, $errfile, $errline) {
    throw new Exception('Some Exception');
}
?>
--EXPECT--
This Exception should be caught