3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public function testing($var) { if ($var == 'test') { throw new Exception('broke'); } return true; } } $test = new Test(); try { var_dump($test->testing('test')); } catch (Exception $e) { echo $e->getMessage(); }

preferences:
34.44 ms | 402 KiB | 5 Q