3v4l.org

run code in 300+ PHP versions simultaneously
<?php spl_autoload_register(function ($class) { echo 'Class: '.$class."\n"; if ($class === 'Foo') { class Foo implements Bar {} } throw new RuntimeException('Class not found'); }); try { class_exists('Foo'); } catch (RuntimeException $e) { echo $e->getMessage(); }

preferences:
25.34 ms | 405 KiB | 5 Q