php-src/Zend/tests/try_finally_002.phpt
Xinchen Hui 60a29791e4 Fixed bug that jmp in try block jmp over finally block
Refactor the implemention,  make codes clear
2012-08-22 18:32:03 +08:00

24 lines
361 B
PHP

--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"