<?php try { (function() { return throw new Exception("first"); })(); } catch (Throwable $e) { var_dump($e); } try { (function() { throw new Exception("second"); })(); } catch (Throwable $e) { var_dump($e); } try { (function() { return throw throw throw new Exception("second"); })(); } catch (Throwable $e) { var_dump($e); }
You have javascript disabled. You will not be able to edit any code.