| Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/catch_finally_002.phpt |
--TEST--
Try catch finally (basic test with return)
--FILE--
<?php
function foo () {
try {
echo "try\n";
return 1;
} catch (Exception $e) {
} finally {
echo "finally\n";
}
return 2;
}
var_dump(foo());
?>
--EXPECTF--
try
finally
int(1)