3v4l.org

run code in 300+ PHP versions simultaneously
<?php function f($b) { if ($b) throw new Exception("e"); } function g($b) { try { f($b); $e = null; } catch (Exception $e) { } var_dump($e ? $e->getMessage() : null); } g(false); g(true);

preferences:
33.46 ms | 402 KiB | 5 Q