Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/
Upload File :
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)