3v4l.org

run code in 300+ PHP versions simultaneously
<?php function decorate(callable $fn, callable $decorator) { $wrapper = $decorator(); return function() use ($fn, $wrapper) { $gen = $wrapper(); // Only call the wrapped function if the decorator made "yield" if (!$gen instanceof \Generator) { return; } // Use the yielded arguments, forward all if none given. if (is_array($gen->current())) { $arguments = $gen->current(); } else { $arguments = func_get_args(); } // Forward all throwed Exceptions try { // Send the decorated function's return value into the // decorator as return value of "yield" $gen->send(call_user_func_array($fn, $arguments)); } catch (\Exception $e) { $gen->throw($e); } }; } function foo($bar) { throw new Exception("Error $bar!"); } function catch_all_exceptions() { return function() { try { (yield); } catch (\Exception $e) { echo "catch_all_exceptions: Caught Exception: $e\n"; } }; } function do_something_before() { return function() { echo "Before!\n"; yield; }; } $foo = decorate(decorate("foo", "catch_all_exceptions"), "do_something_before"); $foo("bar");

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.0100.01018.30
8.3.50.0070.00717.93
8.3.40.0060.00918.76
8.3.30.0100.01318.95
8.3.20.0070.00020.30
8.3.10.0080.00021.94
8.3.00.0080.00022.39
8.2.180.0110.00716.34
8.2.170.0120.00322.96
8.2.160.0100.00319.14
8.2.150.0000.00924.18
8.2.140.0050.00324.66
8.2.130.0140.00026.16
8.2.120.0080.00019.36
8.2.110.0060.00319.39
8.2.100.0080.00417.82
8.2.90.0040.00419.08
8.2.80.0060.00317.97
8.2.70.0050.00317.50
8.2.60.0030.00618.04
8.2.50.0000.00818.07
8.2.40.0090.00018.28
8.2.30.0000.00718.07
8.2.20.0080.00017.75
8.2.10.0040.00417.79
8.2.00.0000.00717.70
8.1.270.0000.00822.18
8.1.260.0050.00326.35
8.1.250.0000.00828.09
8.1.240.0060.00321.43
8.1.230.0070.00417.42
8.1.220.0040.00417.76
8.1.210.0040.00418.77
8.1.200.0070.00417.35
8.1.190.0000.00817.23
8.1.180.0050.00318.84
8.1.170.0000.00818.64
8.1.160.0000.00722.16
8.1.150.0070.00018.52
8.1.140.0000.00817.49
8.1.130.0000.00717.82
8.1.120.0000.00717.50
8.1.110.0040.00417.49
8.1.100.0040.00417.43
8.1.90.0030.00317.47
8.1.80.0000.00817.39
8.1.70.0030.00317.49
8.1.60.0050.00317.56
8.1.50.0040.00417.56
8.1.40.0000.00717.48
8.1.30.0040.00417.70
8.1.20.0040.00417.53
8.1.10.0080.00017.54
8.1.00.0060.00317.54
8.0.300.0000.00718.77
8.0.290.0000.00816.75
8.0.280.0000.00718.38
8.0.270.0030.00317.19
8.0.260.0030.00316.82
8.0.250.0030.00316.95
8.0.240.0020.00516.92
8.0.230.0030.00316.90
8.0.220.0030.00316.85
8.0.210.0030.00317.02
8.0.200.0040.00417.03
8.0.190.0030.00317.02
8.0.180.0000.00916.89
8.0.170.0000.00716.93
8.0.160.0040.00416.95
8.0.150.0070.00016.80
8.0.140.0030.00516.95
8.0.130.0000.00713.39
8.0.120.0040.00416.98
8.0.110.0000.00716.84
8.0.100.0040.00416.98
8.0.90.0050.00316.86
8.0.80.0090.00616.97
8.0.70.0000.00716.98
8.0.60.0040.00416.83
8.0.50.0040.00416.83
8.0.30.0070.01217.27
8.0.20.0140.00617.40
8.0.10.0000.00716.97
8.0.00.0100.00816.76
7.4.330.0050.00015.00
7.4.320.0030.00316.40
7.4.300.0030.00316.61
7.4.290.0030.00316.49
7.4.280.0040.00416.53
7.4.270.0070.00016.60
7.4.260.0000.00716.61
7.4.250.0000.00816.57
7.4.240.0010.00616.65
7.4.230.0070.00016.72
7.4.220.0100.00716.58
7.4.210.0100.00916.63
7.4.200.0050.00216.73
7.4.190.0040.00416.66
7.4.160.0180.00016.41
7.4.150.0090.00917.40
7.4.140.0100.00717.86
7.4.130.0100.01016.50
7.4.120.0100.00716.62
7.4.110.0080.01316.63
7.4.100.0110.00716.68
7.4.90.0120.01216.48
7.4.80.0090.01019.39
7.4.70.0070.01016.69
7.4.60.0100.00716.79
7.4.50.0090.00016.44
7.4.40.0070.00722.77
7.4.30.0000.01816.53
7.4.00.0030.01314.94
7.3.330.0030.00313.32
7.3.320.0000.00513.46
7.3.310.0030.00316.46
7.3.300.0070.00016.30
7.3.290.0060.01216.46
7.3.280.0080.01116.43
7.3.270.0080.00817.40
7.3.260.0030.01316.30
7.3.250.0150.00316.54
7.3.240.0160.00316.50
7.3.230.0000.01616.49
7.3.210.0090.00616.52
7.3.200.0100.00719.39
7.3.190.0030.01716.48
7.3.180.0120.00616.65
7.3.170.0060.00916.43
7.3.160.0030.01316.56
7.3.120.0140.00015.04
7.2.330.0070.01116.55
7.2.320.0120.00616.60
7.2.310.0080.00816.55
7.2.300.0070.01016.74
7.2.290.0100.00616.41
7.2.60.0120.00617.11
7.1.200.0030.00915.75
7.1.100.0050.00817.70
7.1.70.0100.00717.29
7.1.60.0030.01919.82
7.1.50.0070.01716.99
7.1.00.0030.07722.27
7.0.200.0050.00216.53
7.0.140.0030.07022.04
7.0.70.0100.07721.72
7.0.60.0000.08721.88
7.0.50.0100.07322.14
7.0.40.0070.08720.04
7.0.30.0070.08019.95
7.0.20.0030.07320.15
7.0.10.0100.06720.09
7.0.00.0100.05320.09
5.6.280.0000.07720.94
5.6.220.0030.07320.58
5.6.210.0030.06020.64
5.6.200.0000.08721.14
5.6.190.0100.08321.05
5.6.180.0070.08320.96
5.6.170.0170.07321.04
5.6.160.0070.03721.08
5.6.150.0030.07021.03
5.6.140.0170.06721.10
5.6.130.0030.08721.13
5.6.120.0030.08321.10
5.6.110.0070.08020.96
5.6.100.0030.06020.94
5.6.90.0030.09021.13
5.6.80.0030.04720.52
5.6.70.0030.08320.45
5.6.60.0030.04320.56
5.6.50.0070.08020.58
5.6.40.0000.06320.49
5.6.30.0000.05320.34
5.6.20.0000.08720.41
5.6.10.0070.07720.33
5.6.00.0100.06720.53
5.5.360.0070.08320.36
5.5.350.0030.08720.45
5.5.340.0000.05020.80
5.5.330.0030.08020.79
5.5.320.0070.06020.79
5.5.310.0030.08020.84
5.5.300.0000.04320.81
5.5.290.0100.05720.66
5.5.280.0130.08020.84
5.5.270.0030.07720.83
5.5.260.0000.07720.82
5.5.250.0000.07720.77
5.5.240.0000.06320.21
5.5.230.0030.08020.27
5.5.220.0000.08320.21
5.5.210.0100.04720.31
5.5.200.0070.07720.24
5.5.190.0000.05020.01
5.5.180.0030.08020.17
5.5.160.0000.08320.23
5.5.150.0030.07320.28
5.5.140.0000.07720.24
5.5.130.0030.08020.25
5.5.120.0000.08320.26
5.5.110.0030.07720.24
5.5.100.0000.04320.04
5.5.90.0030.05320.02
5.5.80.0030.06320.09
5.5.70.0030.08320.15
5.5.60.0100.07719.98
5.5.50.0070.07319.95
5.5.40.0030.06719.95
5.5.30.0070.07019.97
5.5.20.0030.05320.10
5.5.10.0070.07320.13
5.5.00.0030.04320.05
5.4.450.0030.08319.37
5.4.440.0070.08319.45
5.4.430.0070.07019.46
5.4.420.0130.07319.55
5.4.410.0000.05319.10
5.4.400.0130.05719.18
5.4.390.0000.08718.84
5.4.380.0070.06719.03
5.4.370.0070.07719.18
5.4.360.0030.06018.88
5.4.350.0030.07719.09
5.4.340.0000.04019.09
5.4.320.0070.07319.09
5.4.310.0030.08319.04
5.4.300.0100.07319.16
5.4.290.0100.06019.12
5.4.280.0070.05018.95
5.4.270.0070.07319.14
5.4.260.0070.07319.12
5.4.250.0000.05318.87
5.4.240.0070.07319.04
5.4.230.0000.06319.04
5.4.220.0030.06719.12
5.4.210.0100.07019.03
5.4.200.0030.08019.11
5.4.190.0000.04719.02
5.4.180.0230.04319.16
5.4.170.0000.08019.20
5.4.160.0070.07019.03
5.4.150.0000.07718.82
5.4.140.0100.06716.39
5.4.130.0000.08016.48
5.4.120.0030.06316.46
5.4.110.0070.07316.52
5.4.100.0000.06016.55
5.4.90.0000.05316.45
5.4.80.0070.03716.43
5.4.70.0030.06316.45
5.4.60.0070.03716.45
5.4.50.0030.07016.48
5.4.40.0070.07016.39
5.4.30.0000.05716.25
5.4.20.0000.07716.34
5.4.10.0070.07316.48
5.4.00.0030.07015.86
5.3.290.0000.08014.70
5.3.280.0070.06714.68
5.3.270.0030.08314.70
5.3.260.0100.07714.70
5.3.250.0030.07714.78
5.3.240.0000.05014.58
5.3.230.0030.07014.63
5.3.220.0100.05314.67
5.3.210.0030.08314.67
5.3.200.0030.08014.53
5.3.190.0000.05714.62
5.3.180.0100.06314.52
5.3.170.0000.07314.55
5.3.160.0070.05714.61
5.3.150.0030.05014.71
5.3.140.0000.06714.72
5.3.130.0000.08314.58
5.3.120.0070.05714.52
5.3.110.0030.08014.54
5.3.100.0000.06714.07
5.3.90.0000.06014.16
5.3.80.0030.07314.04
5.3.70.0000.04713.96
5.3.60.0000.08014.08
5.3.50.0000.07713.90
5.3.40.0000.08013.99
5.3.30.0070.06713.83
5.3.20.0030.06713.73
5.3.10.0000.03713.66
5.3.00.0070.06313.55
5.2.170.0070.04312.34
5.2.160.0070.05712.34
5.2.150.0070.04712.34
5.2.140.0030.06312.34
5.2.130.0000.06312.34
5.2.120.0030.03312.34
5.2.110.0000.03712.34
5.2.100.0100.03012.34
5.2.90.0070.02312.34
5.2.80.0070.05712.34
5.2.70.0030.05712.34
5.2.60.0030.06012.34
5.2.50.0030.06312.34
5.2.40.0030.06312.34
5.2.30.0030.06312.34
5.2.20.0070.06012.34
5.2.10.0100.03712.34
5.2.00.0100.05012.34
5.1.60.0000.04712.34
5.1.50.0000.05312.34
5.1.40.0030.04712.34
5.1.30.0000.05712.34
5.1.20.0030.03712.34
5.1.10.0030.03312.34
5.1.00.0030.04312.34
5.0.50.0030.04712.34
5.0.40.0030.02712.34
5.0.30.0000.05712.34
5.0.20.0030.04312.34
5.0.10.0000.04312.34
5.0.00.0000.05312.34
4.4.90.0030.02712.34
4.4.80.0000.02012.34
4.4.70.0030.03312.34
4.4.60.0000.03312.34
4.4.50.0030.03312.34
4.4.40.0070.04712.34
4.4.30.0030.03312.34
4.4.20.0000.02012.34
4.4.10.0000.03012.34
4.4.00.0030.04312.34
4.3.110.0000.03712.34
4.3.100.0000.03012.34
4.3.90.0070.02312.34
4.3.80.0000.04012.34
4.3.70.0000.02312.34
4.3.60.0000.03712.34
4.3.50.0030.02712.34
4.3.40.0030.03012.34
4.3.30.0000.03712.34
4.3.20.0030.03312.34
4.3.10.0000.03712.34
4.3.00.0000.03712.34

preferences:
44.15 ms | 400 KiB | 5 Q