mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
60a29791e4
Refactor the implemention, make codes clear
23 lines
382 B
PHP
23 lines
382 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 'Exception' with message 'ex' %s
|
|
Stack trace:
|
|
#0 %stry_finally_001.php(%d): foo('finally')
|
|
#1 {main}
|
|
thrown in %stry_finally_001.php on line %d
|