summaryrefslogtreecommitdiff
path: root/Zend/tests/bug64135.phpt
blob: b4f4c82b3a77aa6631b388d36a04ceb22f9b3ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #64135 (Exceptions from set_error_handler are not always propagated)
--FILE--
<?php

function exception_error_handler() {
        throw new Exception();
}

set_error_handler("exception_error_handler");
try {
   $undefined->undefined();
} catch(Throwable $e) {
    echo "Exception is thrown";
}
?>
--EXPECT--
Exception is thrown