3v4l.org

run code in 300+ PHP versions simultaneously
<?php class testService { public function __construct() { var_dump('constructing service instance'); } } class base { private static $service = null; public static function setService($s) { self::$service = $s; } public static function getService() { return self::$service; } } base::setService(new testService); class foo extends base { public static function test() { var_dump(self::getService()); } } class bar extends base { public static function test() { var_dump(self::getService()); } } $foo = foo::test(); $bar = bar::test();
Output for git.master, git.master_jit, rfc.property-hooks
string(29) "constructing service instance" object(testService)#1 (0) { } object(testService)#1 (0) { }

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:
65.76 ms | 401 KiB | 8 Q