<?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(); }
You have javascript disabled. You will not be able to edit any code.