catch-throw

Issue #3 resolved
Develops repo owner created an issue

не пашет

<?php
    try
    {
        do
        {
            print "test";
        } while (0);
    }   catch ( Exception $e ) {
        print "netest";
      throw $e;
    }

Выдает

<?php

print("test");

goto label9;

print("netest");
throw $e;
label9:

?>

Comments (1)

  1. Log in to comment