3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler(function ($errno, $errstr) { global $errored; $errored = TRUE; return TRUE; }); $errored = FALSE; $excludedClasses = [ // These cause fatal errors on instantiation "Closure", "SQLite3", "Filter" ]; var_dump( array_filter( get_declared_classes(), function ($className) use (&$errored, $excludedClasses) { $errored = FALSE; if ((new ReflectionClass($className))->hasMethod('__construct') && (new ReflectionMethod("$className::__construct"))->isPrivate()) { return FALSE; } foreach ($excludedClasses as $class) { if (substr($className, 0, strlen($class)) === $class) { return FALSE; } } if (!(new ReflectionClass($className))->hasMethod('__toString')) { try { $x = new $className; $x = (string)$x; return $errored; } catch (Exception $e) { return FALSE; } } return FALSE; } ) );
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: The "Generator" class is reserved for internal use and cannot be manually instantiated in /in/3ErWl:28 Stack trace: #0 [internal function]: {closure}('Generator') #1 /in/3ErWl(13): array_filter(Array, Object(Closure)) #2 {main} thrown in /in/3ErWl on line 28
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
61.13 ms | 401 KiB | 8 Q