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('sef', 'self::replace'), $it); } private static function replace($matches) { return sprintf(self::$mask, $matches[0]); } } abstract class MyModule extends Module { protected static $mask = '{{{%s}}}'; private static function replace($matches) { return sprintf(self::$mask, $matches[0]); } }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: preg_replace_callback(): Argument #2 ($callback) must be a valid callback, class "sef" not found in /in/hXhis:10 Stack trace: #0 /in/hXhis(10): preg_replace_callback('~\\w+~', Array, 'hello world.') #1 /in/hXhis(2): Module::work('hello world.') #2 {main} thrown in /in/hXhis 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:
44.56 ms | 401 KiB | 8 Q