3v4l.org

run code in 300+ PHP versions simultaneously
<?php class ExpressionCalculator { private $operators = array(); public function __construct() { $operators['+'] = function ($leftOperand, $rightOperand) { return $leftOperand + $rightOperand; }; $operators['-'] = function ($leftOperand, $rightOperand) { return $leftOperand - $rightOperand; }; $operators['*'] = function ($leftOperand, $rightOperand) { return $leftOperand * $rightOperand; }; $operators['/'] = function ($leftOperand, $rightOperand) { return $leftOperand / $rightOperand; }; } public function calc($expression) { $operands = array(); $i = 0; while (($token = strtok($expression, ' ')) !== false) { echo $token; $i++; if ($i > 100) { die; } if ($this->isOperator($token)) { $rightOperand = array_pop($operands); $leftOperand = array_pop($operands); $result = $this->execute($token, $leftOperand, $rightOperand); array_push($operands, $result); } else if (is_numeric($token)) { array_push($operands, $token); } else { throw new InvalidArgumentException('Expression has invalid token: ' + $token); } } return $result; } private function isOperator($token) { return isset($operators[$token]); } private function execute($operator, $leftOperand, $rightOperand) { return call_user_func($operators[$operator], $leftOperand, $rightOperand); } } $calc = new ExpressionCalculator(); echo $calc->calc('5 1 2 + 4 * + 3 -'); // 14

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.00318.55
8.3.50.0150.00821.95
8.3.40.0180.00318.83
8.3.30.0110.00320.34
8.3.20.0040.01120.16
8.3.10.0040.00421.92
8.3.00.0070.01122.20
8.2.180.0130.00617.00
8.2.170.0100.01022.96
8.2.160.0040.01122.13
8.2.150.0090.00924.18
8.2.140.0100.00624.66
8.2.130.0040.00426.16
8.2.120.0000.00820.86
8.2.110.0030.00622.08
8.2.100.0060.00617.97
8.2.90.0060.00319.21
8.2.80.0040.00419.28
8.2.70.0030.00517.75
8.2.60.0000.00817.93
8.2.50.0030.00718.07
8.2.40.0040.00420.01
8.2.30.0070.00019.58
8.2.20.0040.00417.73
8.2.10.0030.00617.72
8.2.00.0040.00417.78
8.1.280.0090.00625.92
8.1.270.0030.00623.99
8.1.260.0040.00426.35
8.1.250.0050.00328.09
8.1.240.0050.00523.92
8.1.230.0080.00419.10
8.1.220.0000.00817.74
8.1.210.0040.00418.77
8.1.200.0000.00917.38
8.1.190.0040.00417.53
8.1.180.0060.00319.01
8.1.170.0080.00018.52
8.1.160.0000.00718.87
8.1.150.0030.00718.68
8.1.140.0000.00817.49
8.1.130.0050.00317.79
8.1.120.0080.00017.52
8.1.110.0050.00217.39
8.1.100.0030.00617.40
8.1.90.0070.00317.53
8.1.80.0040.00317.42
8.1.70.0000.00717.48
8.1.60.0050.00317.61
8.1.50.0030.00517.60
8.1.40.0080.00017.46
8.1.30.0050.00317.50
8.1.20.0050.00317.70
8.1.10.0080.00017.52
8.1.00.0000.00917.59
8.0.300.0060.00318.77
8.0.290.0050.00216.92
8.0.280.0030.00318.48
8.0.270.0070.00017.17
8.0.260.0030.00316.93
8.0.250.0020.00517.07
8.0.240.0030.00616.93
8.0.230.0000.00717.03
8.0.220.0030.00316.91
8.0.210.0030.00317.00
8.0.200.0030.00317.12
8.0.190.0000.00717.07
8.0.180.0000.00716.93
8.0.170.0000.00916.91
8.0.160.0080.00017.03
8.0.150.0100.00016.97
8.0.140.0030.00317.02
8.0.130.0000.00713.47
8.0.120.0030.00516.83
8.0.110.0070.00016.91
8.0.100.0040.00417.01
8.0.90.0080.00016.89
8.0.80.0070.01017.02
8.0.70.0000.00716.88
8.0.60.0040.00416.83
8.0.50.0040.00416.88
8.0.30.0110.00916.99
8.0.20.0090.01317.40
8.0.10.0000.00816.95
8.0.00.0130.00916.67
7.4.330.0000.00515.09
7.4.320.0030.00316.55
7.4.300.0000.00716.45
7.4.290.0000.00716.59
7.4.280.0000.00716.54
7.4.270.0030.00316.57
7.4.260.0070.00013.24
7.4.250.0080.00016.56
7.4.240.0050.00216.50
7.4.230.0070.00016.45
7.4.220.0100.01416.51
7.4.210.0080.00616.58
7.4.200.0000.00716.68
7.4.190.0070.00016.51
7.4.160.0090.01416.66
7.4.150.0140.00317.40
7.4.140.0050.01217.86
7.4.130.0110.00616.56
7.4.120.0180.00216.52
7.4.110.0150.00316.64
7.4.100.0120.00616.65
7.4.90.0090.00916.69
7.4.80.0120.01219.39
7.4.70.0040.01816.38
7.4.60.0130.01016.58
7.4.50.0090.00016.63
7.4.40.0040.01122.77
7.4.30.0160.00816.67
7.4.00.0080.00915.07
7.3.330.0000.00613.43
7.3.320.0030.00313.46
7.3.310.0030.00316.44
7.3.300.0030.00316.39
7.3.290.0090.00616.51
7.3.280.0130.00516.44
7.3.270.0070.01117.40
7.3.260.0210.00616.42
7.3.250.0080.01216.53
7.3.240.0070.01716.56
7.3.230.0180.00616.66
7.3.210.0070.01116.29
7.3.200.0060.01019.39
7.3.190.0100.00716.38
7.3.180.0030.01416.61
7.3.170.0030.01216.64
7.3.160.0170.00016.51
7.3.120.0100.00514.88
7.3.110.0100.00714.72
7.3.100.0030.01015.09
7.3.90.0070.01014.96
7.3.80.0030.00915.13
7.3.70.0030.01214.84
7.3.60.0030.01014.64
7.3.50.0120.00414.76
7.3.40.0040.00714.88
7.3.30.0070.00714.70
7.3.20.0070.00716.67
7.3.10.0140.00016.64
7.3.00.0110.00416.66
7.2.330.0120.00616.85
7.2.320.0090.01516.76
7.2.310.0120.00616.82
7.2.300.0030.01516.52
7.2.290.0120.00416.73
7.2.250.0110.00715.23
7.2.240.0130.00615.24
7.2.230.0030.01315.26
7.2.220.0060.00914.77
7.2.210.0040.00815.30
7.2.200.0060.00615.16
7.2.190.0070.00715.14
7.2.180.0000.01415.23
7.2.170.0050.00515.02
7.2.80.0030.00716.50
7.2.60.0070.01016.96
7.2.00.0040.00719.45
7.1.330.0040.01115.82
7.1.320.0040.00415.78
7.1.310.0030.00715.77
7.1.300.0030.01015.84
7.1.290.0060.00915.98
7.1.280.0000.01615.81
7.1.270.0060.00915.86
7.1.260.0030.00915.63
7.1.200.0030.01215.70
7.1.100.0060.00618.29
7.1.70.0000.00917.30
7.1.60.0060.01919.32
7.1.50.0070.02016.92
7.1.00.0070.03322.40
7.0.200.0080.00416.77
7.0.140.0070.07321.90
7.0.100.0470.07019.99
7.0.90.0100.07719.90
7.0.80.0070.04320.05
7.0.70.0100.08019.99
7.0.60.0070.06720.00
7.0.50.0100.05720.30
7.0.40.0030.07320.11
7.0.30.0030.07020.08
7.0.20.0130.04020.03
7.0.10.0130.04020.14
7.0.00.0070.05020.05
5.6.280.0100.06720.79
5.6.250.0100.08320.73
5.6.240.0170.07720.63
5.6.230.0170.06320.52
5.6.220.0130.07720.69
5.6.210.0100.08320.76
5.6.200.0070.08321.05
5.6.190.0100.07720.98
5.6.180.0070.05321.04
5.6.170.0100.08320.95
5.6.160.0030.09021.19
5.6.150.0170.04720.95
5.6.140.0070.08321.11
5.6.130.0100.07721.07
5.6.120.0070.08021.04
5.6.110.0100.08020.97
5.6.100.0100.08321.08
5.6.90.0230.05020.94
5.6.80.0130.03320.57
5.6.70.0030.05720.35
5.6.60.0070.04320.45
5.6.50.0100.07720.42
5.6.40.0030.05320.33
5.6.30.0100.07020.38
5.6.20.0100.04020.40
5.6.10.0100.04720.38
5.6.00.0000.05020.37
5.5.380.0130.07020.38
5.5.370.0030.08320.32
5.5.360.0030.08320.43
5.5.350.0030.09020.50
5.5.340.0070.07720.70
5.5.330.0000.07320.76
5.5.320.0130.07720.94
5.5.310.0070.05720.81
5.5.300.0130.05020.88
5.5.290.0070.08320.84
5.5.280.0100.04020.85
5.5.270.0130.06320.83
5.5.260.0100.08320.84
5.5.250.0200.07020.66
5.5.240.0030.04720.23
5.5.230.0070.06020.17
5.5.220.0070.04320.20
5.5.210.0130.07020.17
5.5.200.0130.07720.23
5.5.190.0170.04720.14
5.5.180.0070.04320.25
5.5.160.0170.06720.09
5.5.150.0100.04020.16
5.5.140.0070.04320.14
5.5.130.0170.06720.09
5.5.120.0170.05320.26
5.5.110.0100.07020.27
5.5.100.0170.06320.00
5.5.90.0070.07720.18
5.5.80.0030.04720.09
5.5.70.0130.07320.11
5.5.60.0100.08020.17
5.5.50.0130.07720.13
5.5.40.0130.07020.07
5.5.30.0170.07020.15
5.5.20.0070.07719.98
5.5.10.0070.07720.05
5.5.00.0130.07320.12
5.4.450.0030.04719.36
5.4.440.0100.04019.38
5.4.430.0100.07719.22
5.4.420.0130.07019.53
5.4.410.0100.04019.04
5.4.400.0030.04019.13
5.4.390.0070.03719.11
5.4.380.0070.04319.13
5.4.370.0030.04319.18
5.4.360.0130.07319.13
5.4.350.0070.03718.90
5.4.340.0070.07719.16
5.4.320.0030.06319.21
5.4.310.0100.07718.85
5.4.300.0200.08319.03
5.4.290.0070.07719.18
5.4.280.0030.04719.12
5.4.270.0130.07719.03
5.4.260.0000.08019.16
5.4.250.0200.05019.04
5.4.240.0100.06019.04
5.4.230.0100.07719.22
5.4.220.0170.06719.09
5.4.210.0070.07318.87
5.4.200.0070.06719.23
5.4.190.0100.06019.20
5.4.180.0030.04719.07
5.4.170.0070.05319.04
5.4.160.0070.04019.19
5.4.150.0130.06019.22
5.4.140.0070.06716.47
5.4.130.0030.08016.46
5.4.120.0130.05716.48
5.4.110.0100.06016.38
5.4.100.0070.03716.39
5.4.90.0100.06316.54
5.4.80.0100.07016.57
5.4.70.0000.07716.43
5.4.60.0030.05716.42
5.4.50.0100.03316.36
5.4.40.0070.04716.54
5.4.30.0170.05016.43
5.4.20.0070.07016.46
5.4.10.0130.06316.33
5.4.00.0000.04315.90
5.3.290.0070.04314.66
5.3.280.0200.06314.55
5.3.270.0130.06714.62
5.3.260.0100.07014.64
5.3.250.0030.08014.61
5.3.240.0070.07314.65
5.3.230.0100.07714.69
5.3.220.0030.08014.70
5.3.210.0170.07014.63
5.3.200.0100.06714.63
5.3.190.0130.07714.54
5.3.180.0000.07314.52
5.3.170.0130.02314.57
5.3.160.0070.06714.65
5.3.150.0030.03314.58
5.3.140.0130.07014.68
5.3.130.0070.03714.64
5.3.120.0170.06714.64
5.3.110.0000.06314.55
5.3.100.0000.06314.13
5.3.90.0100.07014.18
5.3.80.0030.03714.11
5.3.70.0070.04314.03
5.3.60.0100.06714.02
5.3.50.0030.07013.86
5.3.40.0000.04714.11
5.3.30.0070.08014.05
5.3.20.0130.07313.75
5.3.10.0000.04713.75
5.3.00.0070.05713.56
5.2.170.0070.06311.20
5.2.160.0070.04011.06
5.2.150.0100.05011.07
5.2.140.0030.06311.25
5.2.130.0030.03311.13
5.2.120.0100.04711.09
5.2.110.0070.06311.03
5.2.100.0000.06711.03
5.2.90.0070.05710.99
5.2.80.0000.04711.11
5.2.70.0070.06011.20
5.2.60.0030.06011.17
5.2.50.0030.05711.01
5.2.40.0030.04311.06
5.2.30.0000.03310.87
5.2.20.0100.04310.96
5.2.10.0000.06310.92
5.2.00.0000.03010.65
5.1.60.0070.05310.03
5.1.50.0100.02710.10
5.1.40.0070.05310.06
5.1.30.0030.03310.45
5.1.20.0100.05310.34
5.1.10.0070.0379.91
5.1.00.0030.05310.08
5.0.50.0030.0379.08
5.0.40.0030.0439.08
5.0.30.0000.0709.08
5.0.20.0000.0339.08
5.0.10.0000.0239.08
5.0.00.0070.0509.08
4.4.90.0070.0309.08
4.4.80.0030.0339.08
4.4.70.0030.0139.08
4.4.60.0070.0279.08
4.4.50.0070.0309.08
4.4.40.0070.0479.08
4.4.30.0070.0209.08
4.4.20.0000.0309.08
4.4.10.0070.0339.08
4.4.00.0070.0479.08
4.3.110.0030.0209.08
4.3.100.0000.0379.08
4.3.90.0000.0239.08
4.3.80.0030.0239.08
4.3.70.0030.0179.08
4.3.60.0000.0209.08
4.3.50.0000.0309.08
4.3.40.0030.0409.08
4.3.30.0000.0339.08
4.3.20.0030.0309.08
4.3.10.0000.0209.08
4.3.00.0030.0339.08

preferences:
46.34 ms | 401 KiB | 5 Q