3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_exception_handler(function($e) { echo "Error encountered: {$e->getMessage()}"; }); class ErrorMessageTest { public function isOk() { echo "This works okay. "; } public function isNotOkay() { echo "This will not work. "; throw new RuntimeException("Violets are red, roses are blue!! Wha!?!?"); } } $test = new ErrorMessageTest(); $test->isOk(); $test->isNotOkay();

preferences:
34.46 ms | 405 KiB | 5 Q