3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo Module::work('hello world.'), "\n"; echo MyModule::work('hello world.'); abstract class Module { private static $mask = '[[[%s]]]'; public static function work($it) { return preg_replace_callback('~\w+~', array('self', 'static::replace'), $it); } private static function replace($matches) { return sprintf(self::$mask, $matches[0]); } } abstract class MyModule extends Module { private static $mask = '{{{%s}}}'; protected static function replace($matches) { return sprintf(self::$mask, $matches[0]); } }
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Use of "self" in callables is deprecated in /in/5c4s3 on line 10 Deprecated: Callables of the form ["Module", "static::replace"] are deprecated in /in/5c4s3 on line 10 [[[hello]]] [[[world]]]. Deprecated: Use of "self" in callables is deprecated in /in/5c4s3 on line 10 Fatal error: Uncaught TypeError: preg_replace_callback(): Argument #2 ($callback) must be a valid callback, class Module is not a subclass of MyModule in /in/5c4s3:10 Stack trace: #0 /in/5c4s3(10): preg_replace_callback('~\\w+~', Array, 'hello world.') #1 /in/5c4s3(3): Module::work('hello world.') #2 {main} thrown in /in/5c4s3 on line 10
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:
41.71 ms | 401 KiB | 8 Q