php-src/Zend/tests/try_finally_002.phpt

24 lines
361 B
Plaintext
Raw Normal View History

--TEST--
Try finally (re-throw exception in finally block)
--FILE--
<?php
function foo () {
try {
throw new Exception("try");
} finally {
throw new Exception("finally");
}
}
try {
foo();
} catch (Exception $e) {
do {
var_dump($e->getMessage());
} while ($e = $e->getPrevious());
}
?>
--EXPECT--
string(7) "finally"
string(3) "try"