| ![[BACK]](/icons/cvsweb/back.gif) Return to exception_002.phpt CVS log ![[TXT]](/icons/cvsweb/text.gif) | ![[DIR]](/icons/cvsweb/dir.gif) Up to  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests | 
1.1       misho       1: --TEST--
                      2: Testing exception and GOTO
                      3: --FILE--
                      4: <?php 
                      5: 
                      6: goto foo;
                      7: 
                      8: try {
                      9:        print 1;
                     10:        
                     11:        foo:
                     12:        print 2;
                     13: } catch (Exception $e) {
                     14:        
                     15: }
                     16: 
                     17: ?>
                     18: --EXPECT--
                     19: 2