3v4l.org

run code in 300+ PHP versions simultaneously
<?php */ // A simple test object class testObj { private $id; static private $sid; public function controller(array $array) { $this->id=$array; } public function setId($newId) { $this->id = $newId; } public function staticcontroller(array $array) { self::$sid=$array; } } class testFacade { function driver() { return "testObj"; } public static function __callStatic($method, $parameters) { return call_user_func_array(array(static::driver(), $method), $parameters); } } $params=array("a"=>1,"b"=>2,"c"=>3,"p"=>$_GET["m"]); $method=$_GET["m"]; for($i=0;$i<10;$i++) switch ($method) { case "variable": $a = "testObj"; $method = "setId"; $test1 = new $a; $test1->$method($_GET["m"]); $method = "controller"; $test1->$method($params); break; case "reflexion": $a = "testObj"; $method = "setId"; $reflectionClass = new ReflectionClass($a); $test2 = $reflectionClass->newInstance(); $reflectionMethod = $reflectionClass->getMethod($method); $reflectionMethod->invoke($test2,33); $method = "controller"; $reflectionMethod = $reflectionClass->getMethod($method); $reflectionMethod->invoke($test2,$params); break; case "call_user_func_array": $a = "testObj"; $test1 = new $a; $method = "setId"; $r=call_user_func_array(array($test1, $method), array(1)); $method = "controller"; $r=call_user_func_array(array($test1, $method), array( $params)); break; case "static1": testObj::staticcontroller($params); break; case "static2": $a = "testObj"; $method = "staticcontroller"; $a::$method($params); break; case "static3": testFacade::staticcontroller( $params); break; }

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.310.0040.03912.49
5.4.300.0080.04112.50
5.4.290.0070.03512.50
5.4.280.0070.03312.39
5.4.270.0050.03812.39
5.4.260.0050.03712.39
5.4.250.0080.03912.39
5.4.240.0100.03212.39
5.4.230.0030.04012.38
5.4.220.0040.03812.39
5.4.210.0070.03512.38
5.4.200.0080.03512.38
5.4.190.0060.03412.38
5.4.180.0060.03512.38
5.4.170.0050.03812.39
5.4.160.0050.03612.38
5.4.150.0060.03512.38
5.4.140.0070.03512.07
5.4.130.0050.04012.05
5.4.120.0080.03412.02
5.4.110.0080.03912.02
5.4.100.0090.03712.01
5.4.90.0040.03812.01
5.4.80.0080.03812.02
5.4.70.0060.03912.01
5.4.60.0050.03512.00
5.4.50.0060.03812.01
5.4.40.0070.03312.00
5.4.30.0060.03511.99
5.4.20.0080.03311.99
5.4.10.0090.03111.99
5.4.00.0080.03411.48
5.3.290.0060.04112.80
5.3.280.0050.03812.71
5.3.270.0090.04112.72
5.3.260.0070.04012.71
5.3.250.0070.03712.72
5.3.240.0070.03712.72
5.3.230.0040.03812.71
5.3.220.0050.03812.68
5.3.210.0040.04012.68
5.3.200.0060.03512.68
5.3.190.0040.03812.68
5.3.180.0050.03612.68
5.3.170.0050.03712.67
5.3.160.0040.03712.67
5.3.150.0100.03712.67
5.3.140.0090.03612.66
5.3.130.0050.04212.66
5.3.120.0110.03312.66
5.3.110.0070.03812.66
5.3.100.0050.03712.12
5.3.90.0050.03612.09
5.3.80.0090.03312.07
5.3.70.0050.04012.08
5.3.60.0090.03312.07
5.3.50.0040.03812.00
5.3.40.0030.03912.00
5.3.30.0040.03711.95
5.3.20.0120.03111.73
5.3.10.0100.04311.69
5.3.00.0060.03811.68
5.2.170.0020.0349.18
5.2.160.0020.0309.19
5.2.150.0030.0319.18
5.2.140.0050.0299.18
5.2.130.0070.0329.14
5.2.120.0030.0329.14
5.2.110.0090.0249.15
5.2.100.0040.0289.14
5.2.90.0040.0289.14
5.2.80.0060.0289.14
5.2.70.0030.0319.14
5.2.60.0080.0409.09
5.2.50.0060.0349.06
5.2.40.0040.0299.04
5.2.30.0060.0279.01
5.2.20.0070.0259.00
5.2.10.0050.0278.92
5.2.00.0040.0308.79
5.1.60.0030.0248.07
5.1.50.0020.0338.07
5.1.40.0050.0238.05
5.1.30.0030.0278.40
5.1.20.0070.0238.42
5.1.10.0030.0268.15
5.1.00.0070.0228.14
5.0.50.0040.0196.63
5.0.40.0040.0186.48
5.0.30.0020.0356.30
5.0.20.0040.0186.27
5.0.10.0040.0196.24
5.0.00.0050.0286.23
4.4.90.0020.0214.78
4.4.80.0040.0184.75
4.4.70.0030.0174.76
4.4.60.0030.0154.75
4.4.50.0030.0154.77
4.4.40.0020.0254.71
4.4.30.0020.0164.76
4.4.20.0010.0254.85
4.4.10.0020.0164.85
4.4.00.0030.0244.76
4.3.110.0050.0134.67
4.3.100.0020.0154.66
4.3.90.0040.0134.64
4.3.80.0030.0244.58
4.3.70.0030.0144.63
4.3.60.0030.0144.63
4.3.50.0020.0164.63
4.3.40.0040.0224.54
4.3.30.0040.0133.29
4.3.20.0020.0153.26
4.3.10.0000.0173.22
4.3.00.0000.01715.92

preferences:
139.25 ms | 1398 KiB | 7 Q