3v4l.org

run code in 300+ PHP versions simultaneously
<?php $configArray = array( 'nominal' => array( 'before' => array( 0 => 'subtotal', ), 'after' => array(), '_code' => 'nominal', ), 'subtotal' => array( 'after' => array( 0 => 'nominal', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'subtotal', ), 'shipping' => array( 'after' => array( 0 => 'subtotal', 1 => 'freeshipping', 2 => 'tax_subtotal', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'shipping', ), 'grand_total' => array( 'after' => array( 0 => 'subtotal', ), 'before' => array(), '_code' => 'grand_total', ), 'msrp' => array( 'before' => array(), 'after' => array(), '_code' => 'msrp', ), 'freeshipping' => array( 'after' => array( 0 => 'subtotal', ), 'before' => array( 0 => 'tax_subtotal', 1 => 'shipping', ), '_code' => 'freeshipping', ), 'discount' => array( 'after' => array( 0 => 'subtotal', 1 => 'shipping', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'discount', ), 'tax_subtotal' => array( 'after' => array( 0 => 'freeshipping', ), 'before' => array( 0 => 'tax', 1 => 'discount', ), '_code' => 'tax_subtotal', ), 'tax_shipping' => array( 'after' => array( 0 => 'shipping', 1 => 'tax_subtotal', ), 'before' => array( 0 => 'tax', 1 => 'discount', ), '_code' => 'tax_shipping', ), 'tax' => array( 'after' => array( 0 => 'subtotal', 1 => 'shipping', 2 => 'discount', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'tax', ), ); function compareTotals($a, $b) { $aCode = $a['_code']; $bCode = $b['_code']; if (in_array($aCode, $b['after']) || in_array($bCode, $a['before'])) { $res = -1; } elseif (in_array($bCode, $a['after']) || in_array($aCode, $b['before'])) { $res = 1; } else { $res = 0; } return $res; } reset($configArray); $element = current($configArray); foreach ($configArray as $code => $data) { foreach ($data['before'] as $beforeCode) { if (!isset($configArray[$beforeCode])) { continue; } $configArray[$code]['before'] = array_unique(array_merge( $configArray[$code]['before'], $configArray[$beforeCode]['before'] )); $configArray[$beforeCode]['after'] = array_merge( $configArray[$beforeCode]['after'], array($code), $data['after'] ); $configArray[$beforeCode]['after'] = array_unique($configArray[$beforeCode]['after']); } foreach ($data['after'] as $afterCode) { if (!isset($configArray[$afterCode])) { continue; } $configArray[$code]['after'] = array_unique(array_merge( $configArray[$code]['after'], $configArray[$afterCode]['after'] )); $configArray[$afterCode]['before'] = array_merge( $configArray[$afterCode]['before'], array($code), $data['before'] ); $configArray[$afterCode]['before'] = array_unique($configArray[$afterCode]['before']); } } uasort($configArray, 'compareTotals'); print_r($configArray);

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.60.0120.00918.43
8.3.50.0140.00721.92
8.3.40.0110.00418.97
8.3.30.0100.00319.22
8.3.20.0000.00820.42
8.3.10.0030.00620.48
8.3.00.0080.00019.25
8.2.180.0130.00316.50
8.2.170.0120.00622.96
8.2.160.0080.00820.45
8.2.150.0030.01324.18
8.2.140.0060.00324.66
8.2.130.0000.00826.16
8.2.120.0000.00720.92
8.2.110.0070.00320.89
8.2.100.0080.00417.91
8.2.90.0060.00319.39
8.2.80.0030.00517.97
8.2.70.0080.00017.63
8.2.60.0050.00318.05
8.2.50.0000.00818.07
8.2.40.0030.00618.28
8.2.30.0060.00319.47
8.2.20.0060.00317.80
8.2.10.0070.00018.08
8.2.00.0000.00917.87
8.1.280.0100.01025.92
8.1.270.0050.00324.00
8.1.260.0080.00026.35
8.1.250.0040.00428.09
8.1.240.0060.00617.25
8.1.230.0110.00017.83
8.1.220.0000.00917.74
8.1.210.0000.00818.77
8.1.200.0000.01017.22
8.1.190.0090.00017.24
8.1.180.0050.00318.10
8.1.170.0000.00818.65
8.1.160.0000.00722.06
8.1.150.0040.00418.93
8.1.140.0000.00817.50
8.1.130.0030.00317.86
8.1.120.0020.00517.56
8.1.110.0030.00517.50
8.1.100.0040.00417.47
8.1.90.0040.00417.51
8.1.80.0050.00217.52
8.1.70.0070.00017.36
8.1.60.0050.00517.66
8.1.50.0040.00417.49
8.1.40.0070.00317.44
8.1.30.0050.00317.57
8.1.20.0000.00817.68
8.1.10.0070.00017.52
8.1.00.0000.00717.40
8.0.300.0040.00418.77
8.0.290.0040.00416.63
8.0.280.0060.00318.50
8.0.270.0040.00417.38
8.0.260.0070.00017.34
8.0.250.0000.00717.07
8.0.240.0000.00717.07
8.0.230.0040.00417.05
8.0.220.0030.00317.00
8.0.210.0040.00317.02
8.0.200.0040.00417.06
8.0.190.0070.00016.89
8.0.180.0000.00716.97
8.0.170.0050.00316.89
8.0.160.0030.00316.91
8.0.150.0000.00716.92
8.0.140.0080.00016.90
8.0.130.0070.00013.33
8.0.120.0080.00016.80
8.0.110.0040.00416.86
8.0.100.0030.00516.93
8.0.90.0070.00017.02
8.0.80.0090.00616.97
8.0.70.0030.00516.77
8.0.60.0040.00416.94
8.0.50.0040.00417.02
8.0.30.0090.01217.35
8.0.20.0100.01217.40
8.0.10.0040.00417.02
8.0.00.0140.00317.03
7.4.330.0020.00215.09
7.4.320.0000.00916.45
7.4.300.0060.00016.58
7.4.290.0040.00416.71
7.4.280.0070.00016.56
7.4.270.0000.00716.61
7.4.260.0050.00316.57
7.4.250.0040.00416.54
7.4.240.0070.00016.67
7.4.230.0030.00316.64
7.4.220.0120.00616.68
7.4.210.0110.01116.76
7.4.200.0000.00716.34
7.4.160.0100.00716.61
7.4.150.0030.01417.40
7.4.140.0030.01417.86
7.4.130.0140.00416.67
7.4.120.0130.00516.59
7.4.110.0100.00716.68
7.4.100.0070.01516.57
7.4.90.0090.00616.49
7.4.80.0040.01319.39
7.4.70.0140.00716.60
7.4.60.0030.01316.71
7.4.50.0080.00016.28
7.4.40.0080.00916.63
7.4.30.0060.00916.58
7.4.00.0100.00614.90
7.3.330.0030.00313.24
7.3.320.0020.00213.41
7.3.310.0000.00716.41
7.3.300.0020.00516.43
7.3.290.0070.00716.39
7.3.280.0070.01016.44
7.3.270.0070.01017.40
7.3.260.0110.00516.38
7.3.250.0100.01016.60
7.3.240.0120.00616.34
7.3.230.0100.00616.63
7.3.210.0120.00616.72
7.3.200.0090.01319.39
7.3.190.0090.00616.41
7.3.180.0030.01216.71
7.3.170.0060.01016.44
7.3.160.0100.01016.73
7.2.330.0140.00316.79
7.2.320.0080.00916.85
7.2.310.0150.00316.62
7.2.300.0100.00616.70
7.2.290.0060.01116.63
7.2.60.0120.00316.82
7.1.200.0050.00515.86
7.1.70.0000.01117.22
7.1.60.0100.01419.61
7.1.50.0100.01316.84
7.1.00.0100.06722.35
7.0.200.0430.00714.86
7.0.140.0130.06721.98
7.0.100.0100.08020.20
7.0.90.0130.07720.05
7.0.80.0170.07020.02
7.0.70.0070.08319.88
7.0.60.0130.04320.09
7.0.50.0130.07720.38
7.0.40.0100.08320.19
7.0.30.0130.07320.08
7.0.20.0100.07319.99
7.0.10.0100.08020.06
7.0.00.0070.05320.08
5.6.280.0070.07021.03
5.6.250.0070.07320.61
5.6.240.0030.06720.71
5.6.230.0100.07020.57
5.6.220.0070.05720.76
5.6.210.0070.08020.51
5.6.200.0070.07721.15
5.6.190.0070.07021.05
5.6.180.0130.08721.13
5.6.170.0130.07321.11
5.6.160.0070.04321.12
5.6.150.0070.09321.21
5.6.140.0100.07721.07
5.6.130.0070.04321.09
5.6.120.0130.04721.02
5.6.110.0100.08321.12
5.6.100.0100.05021.13
5.6.90.0130.08021.05
5.6.80.0130.07720.51
5.6.70.0030.07720.36
5.6.60.0000.06020.35
5.6.50.0170.07020.45
5.6.40.0170.07720.41
5.6.30.0100.07320.41
5.6.20.0130.08020.49
5.6.10.0070.07320.35
5.6.00.0170.07020.47
5.5.380.0170.07320.38
5.5.370.0070.08720.49
5.5.360.0100.07020.38
5.5.350.0100.09020.47
5.5.340.0070.08720.82
5.5.330.0100.08020.87
5.5.320.0130.07320.78
5.5.310.0100.08020.89
5.5.300.0130.08020.96
5.5.290.0100.09020.96
5.5.280.0100.08720.88
5.5.270.0070.05320.77
5.5.260.0070.06020.87
5.5.250.0100.06720.79
5.5.240.0170.06320.34
5.5.230.0100.06020.16
5.5.220.0100.07720.34
5.5.210.0230.06320.15
5.5.200.0170.07020.21
5.5.190.0100.04720.31
5.5.180.0200.05720.20
5.5.160.0100.07720.18
5.5.150.0100.07020.29
5.5.140.0070.06720.16
5.5.130.0100.07020.25
5.5.120.0170.07020.31
5.5.110.0200.06720.21
5.5.100.0100.07720.13
5.5.90.0130.07720.11
5.5.80.0170.07020.19
5.5.70.0070.07720.07
5.5.60.0070.08020.13
5.5.50.0100.07320.13
5.5.40.0100.06320.14
5.5.30.0100.05720.13
5.5.20.0130.03320.21
5.5.10.0070.04020.11
5.5.00.0130.03720.07
5.4.450.0070.07719.36
5.4.440.0170.06719.45
5.4.430.0130.07319.25
5.4.420.0170.07719.46
5.4.410.0100.07719.38
5.4.400.0070.07318.90
5.4.390.0130.05018.86
5.4.380.0100.08019.21
5.4.370.0100.04319.17
5.4.360.0100.08319.20
5.4.350.0100.05719.21
5.4.340.0130.07319.19
5.4.320.0170.07319.23
5.4.310.0070.07319.05
5.4.300.0100.07318.88
5.4.290.0170.03718.95
5.4.280.0170.04019.04
5.4.270.0130.07019.04
5.4.260.0130.06719.09
5.4.250.0100.07019.15
5.4.240.0100.07319.23
5.4.230.0030.07319.20
5.4.220.0130.04319.04
5.4.210.0070.06019.10
5.4.200.0100.07719.24
5.4.190.0070.08019.17
5.4.180.0000.04719.08
5.4.170.0030.04319.04
5.4.160.0070.04319.09
5.4.150.0070.04719.15
5.4.140.0100.03316.40
5.4.130.0030.03716.47
5.4.120.0030.03716.55
5.4.110.0070.03716.49
5.4.100.0030.03716.35
5.4.90.0000.05316.49
5.4.80.0070.04316.43
5.4.70.0070.03016.32
5.4.60.0030.07016.52
5.4.50.0100.02716.30
5.4.40.0130.03016.46
5.4.30.0130.04016.27
5.4.20.0130.04016.49
5.4.10.0070.07716.37
5.4.00.0100.04015.91
5.3.290.0070.05314.85
5.3.280.0130.07714.75
5.3.270.0030.04314.72
5.3.260.0100.03314.77
5.3.250.0170.03314.58
5.3.240.0170.06714.68
5.3.230.0030.04014.74
5.3.220.0030.03714.68
5.3.210.0100.03314.60
5.3.200.0000.03714.61
5.3.190.0130.05314.67
5.3.180.0030.05314.75
5.3.170.0030.03714.64
5.3.160.0030.08314.59
5.3.150.0070.06014.55
5.3.140.0100.05714.62
5.3.130.0070.03314.57
5.3.120.0070.03314.52
5.3.110.0030.04014.70
5.3.100.0070.06314.15
5.3.90.0030.03714.08
5.3.80.0000.03714.13
5.3.70.0070.03714.09
5.3.60.0070.04014.19
5.3.50.0030.05314.05
5.3.40.0030.03313.98
5.3.30.0100.03014.02
5.3.20.0070.06313.80
5.3.10.0070.03313.63
5.3.00.0070.04713.81
5.2.170.0070.03011.18
5.2.160.0030.04711.20
5.2.150.0030.02711.22
5.2.140.0030.03011.06
5.2.130.0100.02711.09
5.2.120.0100.02011.22
5.2.110.0030.03011.16
5.2.100.0030.03011.01
5.2.90.0070.02711.26
5.2.80.0100.02311.27
5.2.70.0030.03011.07
5.2.60.0070.03010.99
5.2.50.0000.03711.10
5.2.40.0100.06011.10
5.2.30.0030.03010.94
5.2.20.0030.03011.00
5.2.10.0070.02710.97
5.2.00.0000.03010.91
5.1.60.0070.03710.55
5.1.50.0000.02710.55
5.1.40.0000.05010.55
5.1.30.0070.03010.55
5.1.20.0070.02310.55
5.1.10.0070.02310.55
5.1.00.0030.05010.55
5.0.50.0070.02310.55
5.0.40.0070.04010.55
5.0.30.0030.06710.55
5.0.20.0070.04010.55
5.0.10.0070.04310.55
5.0.00.0070.05710.55
4.4.90.0030.01310.55
4.4.80.0030.01310.55
4.4.70.0000.01710.55
4.4.60.0000.02010.55
4.4.50.0030.02010.55
4.4.40.0100.02310.55
4.4.30.0000.01710.55
4.4.20.0030.03010.55
4.4.10.0030.01310.55
4.4.00.0030.05710.55
4.3.110.0030.03310.55
4.3.100.0030.03710.55
4.3.90.0100.01710.55
4.3.80.0100.05010.55
4.3.70.0000.04310.55
4.3.60.0070.02710.55
4.3.50.0000.04310.55
4.3.40.0030.05310.55
4.3.30.0070.02710.55
4.3.20.0070.03310.55
4.3.10.0030.02310.55
4.3.00.0030.03710.55

preferences:
51.08 ms | 401 KiB | 5 Q