php-src/Zend/tests/try/try_finally_001.phpt
2015-07-10 13:35:14 +02:00

23 lines
356 B
PHP

--TEST--
Try finally (basic test)
--FILE--
<?php
function foo ($a) {
try {
throw new Exception("ex");
} finally {
var_dump($a);
}
}
foo("finally");
?>
--EXPECTF--
string(7) "finally"
Fatal error: Uncaught Exception: ex %s
Stack trace:
#0 %stry_finally_001.php(%d): foo('finally')
#1 {main}
thrown in %stry_finally_001.php on line %d