3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ALL); class A_Error extends Exception {} class B_Error extends Exception {} class C_Error extends Exception {} try { throw new A_Error(); } catch (A_Error $e) { goto abc; } catch (B_Error $e) { goto abc; } catch (C_Error $e) { abc: var_dump(get_class($e)); echo "Gotta Catch 'Em All\n"; }

preferences:
26.79 ms | 405 KiB | 5 Q