3v4l.org

run code in 300+ PHP versions simultaneously
<?php function report($name, $time) { static $last = null; printf("%-12s: %.8fms", $name, $time); if (null !== $last) { printf(", %.1f%%", (($time - $last)/$last)*100); } echo PHP_EOL; $last = $time; } $iterations = 100000; $a = str_repeat('a', 2<<8); $times = array( "direct" => 0, "static" => 0, "object" => 0 ); class Os { public static function strcmp($a) { strcmp($a, $a); } } class Om { public function strcmp($a) { strcmp($a, $a); } } $o = new Om(); for ($x=0; $x<$iterations; $x++) { $start = microtime(true); strcmp($a, $a); $end = microtime(true) - $start; $times["direct"]+= $end; $start = microtime(true); Os::strcmp($a); $end = microtime(true) - $start; $times["static"]+= $end; $start = microtime(true); $o->strcmp($a); $end = microtime(true) - $start; $times["object"]+= $end; } foreach ($times as $name => $time) { report($name, ($time/$iterations)*1000); }

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)
7.4.60.0070.08116.27
7.4.50.0180.07516.14
7.4.40.0030.08716.42
7.4.30.0030.08016.24
7.4.20.0060.07916.40
7.4.10.0060.08116.15
7.4.00.0070.09815.56
7.3.180.0090.08016.50
7.3.170.0110.08016.32
7.3.160.0110.08216.40
7.3.150.0100.08316.44
7.3.140.0100.07616.46
7.3.130.0060.08116.33
7.3.120.0070.10415.28
7.3.110.0080.10415.26
7.3.100.0080.09315.17
7.3.90.0060.08115.20
7.3.80.0070.09015.20
7.3.70.0050.09115.04
7.3.60.0040.08615.19
7.3.50.0050.08615.16
7.3.40.0040.09415.13
7.3.30.0080.08215.11
7.3.20.0070.08116.63
7.3.10.0070.08516.56
7.3.00.0090.08516.64
7.2.310.0000.08916.50
7.2.300.0150.07716.68
7.2.290.0070.08016.60
7.2.280.0030.09116.36
7.2.270.0110.07916.73
7.2.260.0090.07816.49
7.2.250.0090.11715.38
7.2.240.0090.10715.26
7.2.230.0100.08815.39
7.2.220.0060.09015.32
7.2.210.0080.09515.43
7.2.200.0070.08515.39
7.2.190.0070.08615.34
7.2.180.0040.09015.34
7.2.170.0070.08715.26
7.2.160.0070.09015.43
7.2.150.0080.08516.85
7.2.140.0070.08616.81
7.2.130.0070.08516.77
7.2.120.0080.09616.78
7.2.110.0060.09316.83
7.2.100.0070.09716.80
7.2.90.0050.08916.81
7.2.80.0050.09016.91
7.2.70.0070.08516.74
7.2.60.0050.08916.83
7.2.50.0080.08316.81
7.2.40.0080.09216.81
7.2.30.0070.09116.77
7.2.20.0070.08616.81
7.2.10.0040.09016.85
7.2.00.0040.08916.85
7.1.330.0080.15415.85
7.1.320.0050.15015.81
7.1.310.0050.14515.59
7.1.300.0070.14415.73
7.1.290.0040.15515.74
7.1.280.0030.14715.71
7.1.270.0050.14215.69
7.1.260.0030.14615.71
7.1.250.0030.14715.81
7.1.240.0080.13615.48
7.1.230.0060.14815.76
7.1.220.0040.14215.66
7.1.210.0020.14615.51
7.1.200.0070.13515.77
7.1.190.0070.14315.62
7.1.180.0070.13215.75
7.1.170.0060.14315.59
7.1.160.0050.14815.76
7.1.150.0080.14415.67
7.1.140.0090.13715.70
7.1.130.0070.13715.70
7.1.120.0030.13815.68
7.1.110.0060.13615.75
7.1.100.0090.13415.75
7.1.90.0050.14215.80
7.1.80.0080.13715.67
7.1.70.0080.13116.04
7.1.60.0030.14916.65
7.1.50.0070.13316.07
7.1.40.0030.15615.71
7.1.30.0090.13615.63
7.1.20.0090.13715.73
7.1.10.0070.12915.64
7.1.00.0080.15417.27
7.0.330.0080.15315.29
7.0.320.0040.14315.40
7.0.310.0110.14915.22
7.0.300.0020.14915.27
7.0.290.0080.14015.23
7.0.280.0070.14015.32
7.0.270.0150.14215.22
7.0.260.0060.14215.50
7.0.250.0080.16815.26
7.0.240.0060.15315.34
7.0.230.0070.14215.28
7.0.220.0050.13915.22
7.0.210.0040.14415.27
7.0.200.0060.14915.64
7.0.190.0080.14115.39
7.0.180.0080.14115.26
7.0.170.0090.14215.43
7.0.160.0110.13315.34
7.0.150.0030.14015.29
7.0.140.0090.13815.37
7.0.130.0050.15515.34
7.0.120.0060.13815.36
7.0.110.0090.13515.44
7.0.100.0040.14415.37
7.0.90.0080.17315.44
7.0.80.0080.16816.39
7.0.70.0020.16016.47
7.0.60.0080.14316.44
7.0.50.0180.16416.55
7.0.40.0080.15415.58
7.0.30.0050.14915.53
7.0.20.0050.14515.46
7.0.10.0070.15015.57
7.0.00.0060.16015.57
5.6.400.0090.21614.84
5.6.390.0090.21914.84
5.6.380.0030.21314.90
5.6.370.0080.23414.92
5.6.360.0040.21115.03
5.6.350.0050.22815.00
5.6.340.0110.20414.97
5.6.330.0070.21315.00
5.6.320.0060.22015.13
5.6.310.0080.21714.94
5.6.300.0100.20914.97
5.6.290.0090.22414.72
5.6.280.0060.23516.50
5.6.270.0050.23014.94
5.6.260.0070.21715.12
5.6.250.0090.24415.02
5.6.240.0040.25115.02
5.6.230.0090.23316.40
5.6.220.0070.20616.32
5.6.210.0070.21816.27
5.6.200.0100.20616.53
5.6.190.0070.19316.50
5.6.180.0080.21816.46
5.6.170.0080.23016.45
5.6.160.0100.21616.52
5.6.150.0060.21916.43
5.6.140.0040.21216.47
5.6.130.0160.22016.41
5.6.120.0080.21916.62
5.6.110.0060.21316.37
5.6.100.0090.21016.34
5.6.90.0110.20816.29
5.6.80.0050.22816.16
5.6.70.0090.20716.34
5.6.60.0040.23816.29
5.6.50.0100.19816.12
5.6.40.0070.21516.18
5.6.30.0070.21916.19
5.6.20.0070.21416.23
5.6.10.0090.21716.22
5.6.00.0060.20316.10
5.5.380.0060.22414.92
5.5.370.0070.25016.15
5.5.360.0090.20316.15
5.5.350.0090.21516.33
5.5.340.0070.22016.45
5.5.330.0040.22716.50
5.5.320.0100.21316.38
5.5.310.0050.24216.36
5.5.300.0050.21716.40
5.5.290.0050.22416.43
5.5.280.0060.23116.30
5.5.270.0070.23216.30
5.5.260.0110.24216.26
5.5.250.0080.21716.37
5.5.240.0050.22416.15
5.5.230.0070.22916.20
5.5.220.0080.22816.19
5.5.210.0070.22416.11
5.5.200.0040.22916.15
5.5.190.0020.23116.21
5.5.180.0070.25516.20
5.5.170.0070.22414.92
5.5.160.0100.24416.26
5.5.150.0060.23216.08
5.5.140.0100.24216.13
5.5.130.0060.20816.00
5.5.120.0060.20416.21
5.5.110.0050.21716.26
5.5.100.0070.22016.12
5.5.90.0050.23016.12
5.5.80.0110.20816.07
5.5.70.0050.21216.08
5.5.60.0080.22016.18
5.5.50.0020.21416.08
5.5.40.0100.19416.08
5.5.30.0050.21516.20
5.5.20.0060.22316.16
5.5.10.0060.20716.03
5.5.00.0120.21416.11
5.4.450.0090.21814.02
5.4.440.0080.22314.08
5.4.430.0060.23314.05
5.4.420.0070.23714.02
5.4.410.0050.23314.06
5.4.400.0050.20513.97
5.4.390.0050.20313.87
5.4.380.0060.23713.99
5.4.370.0060.22713.87
5.4.360.0080.21013.90
5.4.350.0060.23313.92
5.4.340.0130.25113.92
5.4.330.0090.24212.18
5.4.320.0050.24314.03
5.4.310.0060.24713.89
5.4.300.0070.21113.94
5.4.290.0060.22913.88
5.4.280.0020.22513.95
5.4.270.0010.23413.85
5.4.260.0060.21313.91
5.4.250.0070.20613.91
5.4.240.0020.21813.94
5.4.230.0040.21813.95
5.4.220.0030.22213.93
5.4.210.0060.20713.94
5.4.200.0040.22813.83
5.4.190.0020.21613.96
5.4.180.0060.21513.84
5.4.170.0020.23013.90
5.4.160.0030.22913.97
5.4.150.0070.22113.87
5.4.140.0060.23713.38
5.4.130.0090.23313.29
5.4.120.0080.22113.27
5.4.110.0060.26113.25
5.4.100.0070.24513.23
5.4.90.0050.23313.24
5.4.80.0080.21913.31
5.4.70.0020.21813.25
5.4.60.0060.21813.29
5.4.50.0060.20913.31
5.4.40.0060.20713.28
5.4.30.0050.20713.30
5.4.20.0060.21413.34
5.4.10.0060.23113.29
5.4.00.0060.20513.17
5.3.290.0160.30913.95
5.3.280.0080.22913.91
5.3.270.0050.25113.91
5.3.260.0080.27513.91
5.3.250.0030.24813.93
5.3.240.0070.24413.87
5.3.230.0110.27613.85
5.3.220.0120.27213.80
5.3.210.0120.34713.81
5.3.200.0240.29213.79
5.3.190.0100.26413.82
5.3.180.0080.26713.92
5.3.170.0080.26313.96
5.3.160.0030.27213.82
5.3.150.0160.27213.91
5.3.140.0050.26113.84
5.3.130.0030.28213.89
5.3.120.0030.28813.83
5.3.110.0120.27113.78
5.3.100.0100.27913.53
5.3.90.0090.26313.70
5.3.80.0130.24213.61
5.3.70.0150.22713.54
5.3.60.0110.22713.56
5.3.50.0070.27113.57
5.3.40.0110.27013.53
5.3.30.0090.25813.63
5.3.20.0050.22713.42
5.3.10.0100.26813.24
5.3.00.0020.27013.26
5.2.170.0080.26311.87
5.2.160.0110.23311.89
5.2.150.0010.29011.95
5.2.140.0110.27911.90
5.2.130.0140.28311.87
5.2.120.0070.25311.85
5.2.110.0110.27311.86
5.2.100.0110.29011.85
5.2.90.0030.32411.88
5.2.80.0110.28811.76
5.2.70.0030.29211.84
5.2.60.0090.29011.81
5.2.50.0100.31011.82
5.2.40.0030.30111.79
5.2.30.0070.27711.90
5.2.20.0050.28311.72
5.2.10.0050.30011.77
5.2.00.0070.27911.74
5.1.60.0130.24911.48
5.1.50.0020.28811.44
5.1.40.0080.26811.39
5.1.30.0080.25111.43
5.1.20.0080.33311.40
5.1.10.0030.29011.39
5.1.00.0060.29211.45
5.0.50.0060.41111.00
5.0.40.0050.43811.00
5.0.30.0030.46211.00
5.0.20.0060.43111.00
5.0.10.0060.51411.00
5.0.00.0050.48411.00
4.4.90.0020.00911.00
4.4.80.0000.01211.00
4.4.70.0010.01411.00
4.4.60.0020.02111.00
4.4.50.0030.02011.00
4.4.40.0020.03011.00
4.4.30.0060.01311.00
4.4.20.0020.01211.00
4.4.10.0020.01411.00
4.4.00.0010.02511.00
4.3.110.0060.01511.00
4.3.100.0050.01611.00
4.3.90.0050.01711.00
4.3.80.0000.03111.00
4.3.70.0060.01311.00
4.3.60.0010.01611.00
4.3.50.0020.02011.00
4.3.40.0020.03011.00
4.3.30.0050.01611.00
4.3.20.0020.01511.00
4.3.10.0020.01311.00
4.3.00.0020.01111.00

preferences:
47.05 ms | 403 KiB | 5 Q