3v4l.org

run code in 300+ PHP versions simultaneously
<?php class App { public static $classes = array(); function static register($name, Callable $generator) { $classes[$name] = $generator; } function static make($name) { if (!isset($classes[$name])) { throw new Exception('Invalid class name'); } return ($classes[$name])(); } } // Internal declaration class Foo { public static function bar() { return 'static'; } } App::register('foo', function() { return new Foo; }); // Internal Usage class SomeController { public function view() { echo App::make('foo')->bar(); } } // Some extending application class MyFoo extends Foo { public static function bar() { return 'can\'t make internal methods use this.'; } } App::register('foo', function() { return new MyFoo; }); $c = new SomeController; $c->view();

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
5.4.270.0060.03712.38
5.4.260.0030.04012.37
5.4.250.0050.03812.37
5.4.240.0050.04012.38
5.4.230.0090.04112.36
5.4.220.0090.04612.37
5.4.210.0100.04812.36
5.4.200.0070.05312.37
5.4.190.0080.04312.36
5.4.180.0070.04312.36
5.4.170.0050.04012.37
5.4.160.0040.04012.36
5.4.150.0090.03512.36
5.4.140.0110.03712.05
5.4.130.0040.03712.03
5.4.120.0100.03112.00
5.4.110.0050.03611.99
5.4.100.0090.04211.99
5.4.90.0060.04711.99
5.4.80.0050.03611.99
5.4.70.0040.03711.98
5.4.60.0040.04111.99
5.4.50.0060.03411.98
5.4.40.0070.03511.98
5.4.30.0050.03711.97
5.4.20.0060.03711.97
5.4.10.0100.04411.97
5.4.00.0100.04611.46
5.3.280.0070.03812.71
5.3.270.0050.03912.73
5.3.260.0040.04012.72
5.3.250.0040.03912.72
5.3.240.0050.03712.72
5.3.230.0080.03512.71
5.3.220.0050.03912.68
5.3.210.0080.03812.68
5.3.200.0090.03412.68
5.3.190.0050.04012.68
5.3.180.0060.03812.68
5.3.170.0070.03712.67
5.3.160.0070.03612.67
5.3.150.0070.03712.67
5.3.140.0100.03212.66
5.3.130.0110.03612.66
5.3.120.0060.04012.66
5.3.110.0080.03912.66
5.3.100.0070.04712.12
5.3.90.0110.03512.08
5.3.80.0100.03712.07
5.3.70.0050.03912.07
5.3.60.0030.04012.06
5.3.50.0070.03612.00
5.3.40.0040.03912.00
5.3.30.0040.03711.95
5.3.20.0060.04611.73
5.3.10.0030.03911.68
5.3.00.0040.03911.67

preferences:
142.14 ms | 1394 KiB | 7 Q