3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string1 = 'aaaaaaaaaaaaaaaaaaaa'; $string2 = 'bbbbbbbbbbbbbbbbbbbb'; $string3 = 'cccccccccccccccccccc'; $string4 = 'dddddddddddddddddddd'; $string5 = 'eeeeeeeeeeeeeeeeeeee'; $time1 = microtime(true); for ($k = 0; $k<1000000; $k++) { $concatTest1 = $string1 . $string2 . $string3 . $string4 . $string5; } $time2 = microtime(true); $testDuration1 = $time2 - $time1; echo "Test 1 took $testDuration1 Seconds"; $time3 = microtime(true); for ($m = 0; $m<1000000; $m++) { $concatTest2 = "{$string1}{$string2}{$string3}{$string4}{$string5}"; } $time4 = microtime(true); $testDuration2 = $time4 - $time3; echo "Test 2 took $testDuration2 Seconds"; $time5 = microtime(true); for ($p = 0; $p<1000000; $p++) { $concatTest3 = implode('', array($string1, $string2, $string3, $string4, $string5)); } $time6 = microtime(true); $testDuration3 = $time6 - $time5; echo "Test 3 took $testDuration3 Seconds";

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.10.0070.54115.16
7.4.00.0060.75015.10
7.3.130.0100.72215.01
7.3.120.0130.72514.94
7.3.110.0070.57214.93
7.3.100.0030.67814.71
7.3.90.0100.70914.55
7.3.80.0030.71314.77
7.3.70.0000.64615.00
7.3.60.0030.65214.54
7.3.50.0030.65814.64
7.3.40.0000.69514.96
7.3.30.0030.69314.79
7.3.20.0070.63216.75
7.3.10.0070.61116.87
7.3.00.0030.70216.82
7.2.260.0070.83315.21
7.2.250.0100.81515.29
7.2.240.0030.76515.24
7.2.230.0000.74715.28
7.2.220.0100.58815.29
7.2.210.0000.76314.84
7.2.200.0070.72915.14
7.2.190.0100.59215.27
7.2.180.0030.76915.05
7.2.170.0070.73414.79
7.2.160.0030.57615.26
7.2.150.0070.61416.77
7.2.140.0030.80416.72
7.2.130.0070.79516.76
7.2.120.0070.66316.96
7.2.110.0030.80016.94
7.2.100.0070.85516.98
7.2.90.0070.81117.09
7.2.80.0030.63916.96
7.2.70.0070.71317.09
7.2.60.0070.60416.66
7.2.50.0030.84417.01
7.2.40.0030.77117.04
7.2.30.0030.80616.96
7.2.20.0070.60316.80
7.2.10.0070.83917.06
7.2.00.0070.75516.93
7.1.330.0070.76115.62
7.1.320.0030.79115.47
7.1.310.0000.81515.80
7.1.300.0000.84415.75
7.1.290.0030.76015.87
7.1.280.0070.87215.71
7.1.270.0030.75615.46
7.1.260.0000.74615.47
7.1.250.0000.81915.77
7.1.240.0070.92515.56
7.1.230.0070.94315.80
7.1.220.0030.77415.86
7.1.210.0000.82215.95
7.1.200.0030.86115.63
7.1.190.0070.81115.80
7.1.180.0070.93715.81
7.1.170.0030.79615.89
7.1.160.0030.75115.73
7.1.150.0030.78515.85
7.1.140.0070.72315.72
7.1.130.0030.77815.77
7.1.120.0030.76015.61
7.1.110.0070.80015.55
7.1.100.0070.89715.91
7.1.90.0030.94815.86
7.1.80.0030.97515.53
7.1.70.0070.87115.92
7.1.60.0030.73715.95
7.1.50.0030.94815.60
7.1.40.0030.96815.56
7.1.30.0070.93415.84
7.1.20.0000.93615.89
7.1.10.0030.84615.82
7.1.00.0030.75915.80
7.0.330.0030.92815.58
7.0.320.0070.95315.25
7.0.310.0030.98915.43
7.0.300.0030.73915.47
7.0.290.0030.84615.14
7.0.280.0000.89915.51
7.0.270.0030.96515.23
7.0.260.0030.91015.43
7.0.250.0030.91915.51
7.0.240.0070.98015.34
7.0.230.0000.81315.62
7.0.220.0070.96315.51
7.0.210.0160.83615.58
7.0.200.0030.78315.39
7.0.190.0000.76915.43
7.0.180.0070.84215.34
7.0.170.0000.93515.38
7.0.160.0100.83715.16
7.0.150.0000.96215.45
7.0.140.0000.94215.46
7.0.130.0070.92215.55
7.0.120.0070.91615.19
7.0.110.0030.97015.50
7.0.100.0000.94515.43
7.0.90.0030.97915.13
7.0.80.0030.88815.37
7.0.70.0000.81415.26
7.0.60.0031.00115.57
7.0.50.0030.75115.41
7.0.40.0070.92613.66
7.0.30.0030.96013.18
7.0.20.0030.96113.15
7.0.10.0030.96013.45
7.0.00.0030.95813.31
5.6.400.0071.37513.98
5.6.390.0031.50414.41
5.6.380.0001.31414.35
5.6.370.0001.70414.27
5.6.360.0031.65614.34
5.6.350.0071.61314.32
5.6.340.0031.46114.59
5.6.330.0071.51714.25
5.6.320.0071.36814.17
5.6.310.0101.71314.66
5.6.300.0071.62114.20
5.6.290.0101.55914.39
5.6.280.0031.72614.45
5.6.270.0071.69114.22
5.6.260.0001.40214.23
5.6.250.0031.65414.23
5.6.240.0071.38314.40
5.6.230.0101.45214.27
5.6.220.0071.64214.38
5.6.210.0071.46514.11
5.6.200.0031.43114.28
5.6.190.0071.49114.49
5.6.180.0001.72414.54
5.6.170.0131.42814.64
5.6.160.0031.74414.29
5.6.150.0001.42414.13
5.6.140.0071.79814.35
5.6.130.0031.74414.39
5.6.120.0031.73314.43
5.6.110.0031.68114.37
5.6.100.0071.73014.36
5.6.90.0031.40014.25
5.6.80.0071.67514.13
5.6.70.0071.70614.23
5.6.60.0001.54614.16
5.6.50.0001.73614.29
5.6.40.0031.44314.21
5.6.30.0131.68714.34
5.6.20.0001.36814.22
5.6.10.0031.34914.46
5.6.00.0101.39514.22
5.5.380.0031.52314.47
5.5.370.0101.46414.28
5.5.360.0101.35214.55
5.5.350.0031.46814.43
5.5.340.0001.75714.24
5.5.330.0071.49914.62
5.5.320.0031.74014.35
5.5.310.0101.36914.20
5.5.300.0001.62814.49
5.5.290.0031.31614.18
5.5.280.0031.63514.19
5.5.270.0031.73114.27
5.5.260.0071.72813.94
5.5.250.0031.51614.35
5.5.240.0031.42214.20
5.5.230.0071.50514.34
5.5.220.0031.62314.07
5.5.210.0001.46214.19
5.5.200.0071.41914.38
5.5.190.0001.73813.84
5.5.180.0031.68314.15
5.5.170.0031.48314.09
5.5.160.0031.59314.13
5.5.150.0071.67414.12
5.5.140.0071.60514.34
5.5.130.0001.65314.37
5.5.120.0101.71314.17
5.5.110.0071.49914.07
5.5.100.0031.43514.30
5.5.90.0001.67914.13
5.5.80.0031.69914.20
5.5.70.0061.36614.22
5.5.60.0071.67514.45
5.5.50.0031.55014.09
5.5.40.0071.77414.51
5.5.30.0061.63413.81
5.5.20.0031.44214.29
5.5.10.0071.44414.06
5.5.00.0031.39014.18
5.4.450.0031.75711.18
5.4.440.0071.35910.83
5.4.430.0101.77611.08
5.4.420.0101.72310.80
5.4.410.0101.78111.13
5.4.400.0071.37311.07
5.4.390.0001.76510.85
5.4.380.0031.62510.85
5.4.370.0001.55011.12
5.4.360.0001.75210.68
5.4.350.0101.43511.11
5.4.340.0031.62811.01
5.4.330.0071.70511.09
5.4.320.0071.69910.86
5.4.310.0031.38810.97
5.4.300.0031.51510.85
5.4.290.0071.74711.11
5.4.280.0001.73610.82
5.4.270.0031.51110.90
5.4.260.0031.63911.11
5.4.250.0001.59710.84
5.4.240.0001.73910.66
5.4.230.0001.67610.93
5.4.220.0031.74410.62
5.4.210.0031.41311.18
5.4.200.0031.72510.95
5.4.190.0001.70911.23
5.4.180.0031.61610.82
5.4.170.0051.44614.82
5.4.160.0051.66715.01
5.4.150.0071.45914.90
5.4.140.0021.25513.84
5.4.130.0101.47913.56
5.4.120.0081.47713.61
5.4.110.0081.24513.70
5.4.100.0071.45613.76
5.4.90.0101.37013.60
5.4.80.0151.34113.68
5.4.70.0021.40013.74
5.4.60.0051.38613.55
5.4.50.0081.39813.48
5.4.40.0071.41713.78
5.4.30.0031.45113.55
5.4.20.0051.31313.74
5.4.10.0021.33713.52
5.4.00.0051.37613.25
5.3.290.0031.79210.52
5.3.280.0031.57710.44
5.3.270.0081.56912.49
5.3.260.0121.60212.51
5.3.250.0021.45312.48
5.3.240.0031.41312.46
5.3.230.0051.48712.38
5.3.220.0051.54212.44
5.3.210.0071.54812.45
5.3.200.0071.55612.40
5.3.190.0021.43512.31
5.3.180.0081.51512.34
5.3.170.0081.35112.46
5.3.160.0081.37112.53
5.3.150.0151.64312.46
5.3.140.0031.71012.34
5.3.130.0051.57212.44
5.3.120.0051.34112.49
5.3.110.0031.54012.37
5.3.100.0131.49512.26
5.3.90.0031.60212.17
5.3.80.0151.59312.00
5.3.70.0071.35811.96
5.3.60.0071.41812.30
5.3.50.0081.65211.97
5.3.40.0071.56012.03
5.3.30.0001.60410.30
5.3.20.0001.67710.09
5.3.10.0031.45610.14
5.3.00.0031.55010.14

preferences:
41.85 ms | 400 KiB | 5 Q