3v4l.org

run code in 300+ PHP versions simultaneously
<?php class IndexRange { /** @var 0|positive-int */ public int $start; /** @var 0|positive-int */ public int $end; /** * @param 0|positive-int $start * @param 0|positive-int $end */ public function __construct(int $start = null, int $end = null) { if (null !== $start) { $this->start = $start; } if (null !== $end) { $this->end = $end; } } } function acceptOne($a) {}; function acceptTwo($a, $b) {}; $t = microtime(true); for ($i = 0; $i < 100_000; $i++) { $start = $i; $end = $i; acceptTwo($start, $end); } echo '2 vars: ' . round((microtime(true) - $t) * 1000, 2) . " ms\n"; $t = microtime(true); for ($i = 0; $i < 100_000; $i++) { $rangeArr = [$i, $i]; acceptOne($rangeArr); } echo 'range arr: ' . round((microtime(true) - $t) * 1000, 2) . " ms\n"; $t = microtime(true); for ($i = 0; $i < 100_000; $i++) { $rangeObj = new IndexRange($i, $i); acceptOne($rangeObj); } echo 'range obj: ' . round((microtime(true) - $t) * 1000, 2) . " ms\n";

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)
8.3.10.0130.02922.81
8.3.00.0070.02919.89
8.2.140.0050.01722.32
8.2.130.0030.03122.21
8.2.120.0190.02919.93
8.2.110.0130.02719.97
8.2.100.0200.02319.89
8.2.90.0110.02820.80
8.2.80.0130.02019.91
8.2.70.0180.02119.58
8.2.60.0080.01620.50
8.2.50.0030.03319.38
8.2.40.0080.01420.58
8.2.30.0080.01320.43
8.2.20.0070.02420.54
8.2.10.0040.01919.66
8.2.00.0120.01719.72
8.1.270.0070.01524.05
8.1.260.0050.01623.90
8.1.250.0080.02324.01
8.1.240.0050.01819.46
8.1.230.0050.01620.38
8.1.220.0070.01520.71
8.1.210.0130.02019.35
8.1.200.0110.01219.69
8.1.190.0120.02619.71
8.1.180.0130.00919.39
8.1.170.0070.02220.39
8.1.160.0100.01319.44
8.1.150.0080.01419.31
8.1.140.0070.02319.40
8.1.130.0110.02120.60
8.1.120.0060.01719.57
8.1.110.0110.02519.46
8.1.100.0070.01619.52
8.1.90.0080.02320.46
8.1.80.0130.02119.40
8.1.70.0050.01819.40
8.1.60.0120.02419.56
8.1.50.0090.01219.53
8.1.40.0080.02420.48
8.1.30.0050.02220.65
8.1.20.0050.02820.61
8.1.10.0120.02219.57
8.1.00.0170.02419.34
8.0.300.0110.03019.78
8.0.290.0090.03317.84
8.0.280.0130.02617.79
8.0.270.0080.01319.80
8.0.260.0160.02117.95
8.0.250.0070.02819.86
8.0.240.0160.02117.88
8.0.230.0130.01318.02
8.0.220.0050.01917.95
8.0.210.0270.01517.82
8.0.200.0060.01917.88
8.0.190.0050.01819.72
8.0.180.0070.01519.83
8.0.170.0090.01817.95
8.0.160.0060.01519.72
8.0.150.0130.01317.90
8.0.140.0100.01717.85
8.0.130.0080.01817.87
8.0.120.0100.01817.86
8.0.110.0090.01219.66
8.0.100.0040.02017.83
8.0.90.0100.01717.69
8.0.80.0050.01619.70
8.0.70.0060.01419.70
8.0.60.0140.01317.87
8.0.50.0080.01917.94
8.0.30.0060.01519.87
8.0.20.0070.01419.88
8.0.10.0120.01417.86
8.0.00.0090.01421.53
7.4.330.0060.01714.35
7.4.320.0110.02517.63
7.4.300.0140.01617.50
7.4.290.0160.01417.50
7.4.280.0120.01917.51
7.4.270.0100.02017.61
7.4.260.0120.01817.60
7.4.250.0250.02617.47
7.4.240.0190.01317.50
7.4.230.0230.02117.55
7.4.220.0230.02017.40
7.4.210.0140.01817.39
7.4.200.0150.02017.47
7.4.190.0130.01617.58
7.4.180.0170.02517.40
7.4.160.0180.02317.49
7.4.150.0160.02217.53
7.4.140.0230.02017.51
7.4.130.0170.02117.30
7.4.120.0120.01817.39
7.4.110.0190.02817.50
7.4.100.0270.02217.48
7.4.90.0150.01717.48
7.4.80.0160.03117.49
7.4.70.0140.01717.45
7.4.60.0130.02217.28
7.4.50.0140.01617.48
7.4.40.0110.01817.48
7.4.30.0140.02817.41
7.4.20.0190.02117.37
7.4.10.0110.02017.48
7.4.00.0160.02817.34
7.3.330.0250.00017.14
7.3.320.0170.00517.12
7.3.310.0170.00517.09
7.3.300.0140.00617.62
7.3.290.0160.00617.16
7.3.280.0180.00417.03
7.3.270.0130.00917.03
7.3.260.0160.00617.07
7.3.250.0190.00317.03
7.3.240.0200.00417.08
7.3.230.0180.00417.22
7.3.220.0190.00316.96
7.3.210.0200.00516.98
7.3.200.0250.00616.96
7.3.190.0280.00716.95
7.3.180.0210.00516.98
7.3.170.0250.00517.49
7.3.160.0230.00316.91
7.3.150.0260.00716.96
7.3.140.0290.00417.01
7.3.130.0290.00516.81
7.3.120.0250.00417.04
7.3.110.0190.00517.49
7.3.100.0210.00417.07
7.3.90.0210.00317.26
7.3.80.0210.00617.02
7.3.70.0230.00717.19
7.3.60.0170.00816.93
7.3.50.0210.00517.01
7.3.40.0170.00717.12
7.3.30.0200.00516.95
7.3.20.0200.00819.01
7.3.10.0190.00618.84
7.3.00.0220.00418.89
7.2.340.0190.00517.06
7.2.330.0170.00816.90
7.2.320.0160.00917.07
7.2.310.0180.00916.97
7.2.300.0240.00317.13
7.2.290.0230.00117.17
7.2.280.0150.00717.16
7.2.270.0150.00717.06
7.2.260.0150.00717.17
7.2.250.0210.00117.19
7.2.240.0180.00417.16
7.2.230.0210.00217.15
7.2.220.0180.01017.09
7.2.210.0220.00516.98
7.2.200.0230.00317.22
7.2.190.0220.00417.08
7.2.180.0290.00517.29
7.2.170.0200.00517.34
7.2.160.0200.00417.27
7.2.150.0230.00319.01
7.2.140.0240.00519.03
7.2.130.0240.01019.32
7.2.120.0210.00419.22
7.2.110.0260.00919.31
7.2.100.0140.00719.24
7.2.90.0190.00419.08
7.2.80.0190.00319.20
7.2.70.0200.00419.03
7.2.60.0190.00819.25
7.2.50.0210.00519.16
7.2.40.0210.00419.24
7.2.30.0200.00518.86
7.2.20.0210.00519.21
7.2.10.0210.00519.11
7.2.00.0190.00719.35
7.1.330.0160.00617.95
7.1.320.0180.00317.91
7.1.310.0200.00418.17
7.1.300.0140.00618.10
7.1.290.0140.00518.04
7.1.280.0170.00318.05
7.1.270.0190.00219.30
7.1.260.0170.00417.89
7.1.250.0150.00217.90
7.1.240.0120.00218.02
7.1.230.0210.00718.03
7.1.220.0230.00317.80
7.1.210.0240.00217.95
7.1.200.0160.00417.97
7.1.190.0190.00218.12
7.1.180.0200.00218.09
7.1.170.0220.00817.81
7.1.160.0190.01017.89
7.1.150.0300.00017.79
7.1.140.0200.00817.95
7.1.130.0130.00917.94
7.1.120.0140.00517.94
7.1.110.0190.00917.90
7.1.100.0190.00717.60
7.1.90.0190.00617.89
7.1.80.0200.00517.88
7.1.70.0180.00617.80
7.1.60.0100.01317.95
7.1.50.0170.00617.82
7.1.40.0210.00218.06
7.1.30.0190.00417.97
7.1.20.0160.00817.85
7.1.10.0200.00418.00
7.1.00.0170.00717.96
7.0.330.0200.00217.70
7.0.320.0140.00517.85
7.0.310.0180.00717.70
7.0.300.0160.00617.53
7.0.290.0170.00317.71
7.0.280.0250.00317.64
7.0.270.0230.00017.67
7.0.260.0170.00917.75
7.0.250.0180.00217.83
7.0.240.0090.00618.00
7.0.230.0180.00617.92
7.0.220.0090.00517.88
7.0.210.0100.01117.76
7.0.200.0130.00117.96
7.0.190.0170.00517.88
7.0.180.0100.00517.73
7.0.170.0200.00217.94
7.0.160.0180.00217.68
7.0.150.0170.00317.76
7.0.140.0180.00317.67
7.0.130.0170.00617.80
7.0.120.0160.00618.02
7.0.110.0190.00317.68
7.0.100.0150.00817.76
7.0.90.0090.00717.41
7.0.80.0090.01017.71
7.0.70.0100.00517.80
7.0.60.0080.00517.84
7.0.50.0080.00617.51
7.0.40.0050.00517.84
7.0.30.0080.00617.84
7.0.20.0070.00617.59
7.0.10.0140.00717.69
7.0.00.0060.00417.71
5.6.400.0020.00916.61
5.6.390.0090.00416.62
5.6.380.0090.00416.64
5.6.370.0080.00516.54
5.6.360.0120.00616.69
5.6.350.0070.00416.49
5.6.340.0050.00616.64
5.6.330.0060.00516.63
5.6.320.0050.00516.61
5.6.310.0070.00416.74
5.6.300.0040.00716.48
5.6.290.0050.00516.52
5.6.280.0050.00516.56
5.6.270.0040.00416.67
5.6.260.0040.00416.71
5.6.250.0040.00416.59
5.6.240.0060.00516.61
5.6.230.0060.00216.62
5.6.220.0100.00316.74
5.6.210.0090.00216.57
5.6.200.0060.00216.81
5.6.190.0080.00216.74
5.6.180.0060.00216.74
5.6.170.0090.00116.68
5.6.160.0030.00416.73
5.6.150.0050.00216.76
5.6.140.0050.00216.67
5.6.130.0070.00516.57
5.6.120.0070.00016.70
5.6.110.0070.00316.53
5.6.100.0050.00316.65
5.6.90.0100.00216.66
5.6.80.0070.00516.58
5.6.70.0080.00316.73
5.6.60.0090.00216.66
5.6.50.0050.00516.61
5.6.40.0050.00516.60
5.6.30.0040.00316.61
5.6.20.0040.00316.58
5.6.10.0030.00316.60
5.6.00.0030.00316.65
5.5.380.0090.00516.56
5.5.370.0120.00216.69
5.5.360.0100.00316.38
5.5.350.0100.00416.43
5.5.340.0120.00216.41
5.5.330.0100.00316.61
5.5.320.0100.00416.55
5.5.310.0110.00316.57
5.5.300.0130.00116.43
5.5.290.0100.00416.57
5.5.280.0140.00016.51
5.5.270.0110.00316.37
5.5.260.0080.00616.46
5.5.250.0070.00716.69
5.5.240.0120.00216.48
5.5.230.0190.00016.36
5.5.220.0100.00516.52
5.5.210.0140.00216.53
5.5.200.0170.00516.52
5.5.190.0150.00616.49
5.5.180.0180.00316.48
5.5.170.0150.00216.27
5.5.160.0130.00116.46
5.5.150.0160.00316.23
5.5.140.0140.00616.37
5.5.130.0110.00516.29
5.5.120.0140.00716.43
5.5.110.0160.00516.21
5.5.100.0150.00716.48
5.5.90.0160.00616.46
5.5.80.0160.00416.43
5.5.70.0180.00516.60
5.5.60.0090.00516.56
5.5.50.0160.00216.56
5.5.40.0120.00616.55
5.5.30.0120.00516.47
5.5.20.0140.00416.44
5.5.10.0140.00216.42
5.5.00.0100.00316.39
5.4.450.0100.00113.99
5.4.440.0100.00113.99
5.4.430.0080.00313.99
5.4.420.0070.00413.99
5.4.410.0080.00313.99
5.4.400.0090.00113.99
5.4.390.0050.00513.99
5.4.380.0080.00313.99
5.4.370.0110.00013.99
5.4.360.0090.00213.99
5.4.350.0080.00313.99
5.4.340.0070.00413.99
5.4.330.0080.00313.99
5.4.320.0100.00013.99
5.4.310.0070.00413.99
5.4.300.0090.00213.99
5.4.290.0140.00313.99
5.4.280.0150.00013.99
5.4.270.0070.00413.99
5.4.260.0090.00213.99
5.4.250.0130.00413.99
5.4.240.0110.00013.99
5.4.230.0080.00313.99
5.4.220.0070.00213.99
5.4.210.0140.00313.99
5.4.200.0150.00313.99
5.4.190.0140.00513.99
5.4.180.0140.00213.99
5.4.170.0110.00413.99
5.4.160.0130.00213.99
5.4.150.0090.00413.99
5.4.140.0080.00413.99
5.4.130.0080.00213.99
5.4.120.0070.00013.99
5.4.110.0030.00513.99
5.4.100.0000.00613.99
5.4.90.0020.00413.99
5.4.80.0040.00213.99
5.4.70.0040.00113.99
5.4.60.0040.00113.99
5.4.50.0030.00313.99
5.4.40.0060.00013.99
5.4.30.0030.00313.99
5.4.20.0060.00013.99
5.4.10.0030.00313.99
5.4.00.0040.00113.99
5.3.290.0080.00313.99
5.3.280.0100.00113.99
5.3.270.0110.00013.99
5.3.260.0030.00813.99
5.3.250.0100.00113.99
5.3.240.0110.00013.99
5.3.230.0090.00213.99
5.3.220.0040.00713.99
5.3.210.0110.00013.99
5.3.200.0050.00513.99
5.3.190.0110.00013.99
5.3.180.0080.00313.99
5.3.170.0050.00513.99
5.3.160.0090.00113.99
5.3.150.0080.00313.99
5.3.140.0080.00313.99
5.3.130.0080.00313.99
5.3.120.0080.00313.99
5.3.110.0060.00413.99
5.3.100.0110.00013.99
5.3.90.0100.00013.99
5.3.80.0080.00213.99
5.3.70.0090.00113.99
5.3.60.0090.00113.99
5.3.50.0070.00313.99
5.3.40.0100.00013.99
5.3.30.0060.00413.99
5.3.20.0060.00413.99
5.3.10.0090.00113.99
5.3.00.0100.00013.99
5.2.170.0020.00713.99
5.2.160.0060.00213.99
5.2.150.0070.00213.99
5.2.140.0080.00013.99
5.2.130.0040.00413.99
5.2.120.0080.00013.99
5.2.110.0040.00413.99
5.2.100.0040.00413.99
5.2.90.0080.00013.99
5.2.80.0000.00813.99
5.2.70.0060.00313.99
5.2.60.0040.00413.99
5.2.50.0060.00213.99
5.2.40.0070.00113.99
5.2.30.0090.00013.99
5.2.20.0040.00513.99
5.2.10.0060.00213.99
5.2.00.0060.00113.99
5.1.60.0060.00113.99
5.1.50.0060.00113.99
5.1.40.0060.00113.99
5.1.30.0050.00213.99
5.1.20.0050.00213.99
5.1.10.0020.00513.99
5.1.00.0060.00113.99
5.0.50.0030.00313.99
5.0.40.0040.00313.99
5.0.30.0030.00413.99
5.0.20.0010.00613.99
5.0.10.0050.00113.99
5.0.00.0070.00013.99
4.4.90.0040.00013.99
4.4.80.0040.00113.99
4.4.70.0020.00213.99
4.4.60.0040.00013.99
4.4.50.0020.00213.99
4.4.40.0030.00013.99
4.4.30.0040.00013.99
4.4.20.0030.00113.99
4.4.10.0040.00013.99
4.4.00.0040.00013.99
4.3.110.0040.00013.99
4.3.100.0020.00213.99
4.3.90.0040.00013.99
4.3.80.0040.00013.99
4.3.70.0020.00213.99
4.3.60.0020.00213.99
4.3.50.0020.00213.99
4.3.40.0040.00013.99
4.3.30.0000.00313.99
4.3.20.0020.00213.99
4.3.10.0020.00113.99
4.3.00.0010.00213.99

preferences:
87.88 ms | 403 KiB | 5 Q