summaryrefslogtreecommitdiff
path: root/Zend/tests/try/try_catch_finally_003.phpt
blob: 4d285eedb8da5717ea6d7563316d323bca5106ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--TEST--
Try catch finally (multi catch blocks with return)
--FILE--
<?php

class AE extends Exception {};
class BE extends Exception {};

function foo () {
    try {
        try {
            try {
                throw new Exception("try");
            } catch (AE $e) {
                die("error");
            } finally {
               echo "1";
            }
        } finally {
           echo "2";
        }
    } catch (BE $e) {
      die("error");
    } catch (Exception $e) {
        echo "3";
    } finally {
        echo "4";
        return 4;
    }
   return 5;
}

var_dump(foo());
?>
--EXPECT--
1234int(4)