3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('TYPEHINT_PCRE', '/^Argument (\d)+ passed to (?:(\w+)::)?(\w+)\(\) must be an instance of (\w+), (\w+) given/'); class Typehint { private static $Typehints = array( 'boolean' => 'is_bool', 'int' => 'is_int', 'integer' => 'is_int', 'float' => 'is_float', 'string' => 'is_string', 'resrouce' => 'is_resource' ); private function __Constrct() {} public static function initializeHandler() { set_error_handler('Typehint::handleTypehint', E_ALL); return TRUE; } private static function getTypehintedArgument($ThBackTrace, $ThFunction, $ThArgIndex, &$ThArgValue) { foreach ($ThBackTrace as $ThTrace) { // Match the function; Note we could do more defensive error checking. if (isset($ThTrace['function']) && $ThTrace['function'] == $ThFunction) { $ThArgValue = $ThTrace['args'][$ThArgIndex - 1]; return TRUE; } } return FALSE; } public static function handleTypehint($ErrLevel, $ErrMessage, $ErrFile, $ErrLine) { if ($ErrLevel == E_RECOVERABLE_ERROR) { if (preg_match(TYPEHINT_PCRE, $ErrMessage, $ErrMatches)) { list($ErrMatch, $ThArgIndex, $ThClass, $ThFunction, $ThHint, $ThType) = $ErrMatches; if (isset(self::$Typehints[$ThHint])) { $ThBacktrace = debug_backtrace(); $ThArgValue = NULL; if (self::getTypehintedArgument($ThBacktrace, $ThFunction, $ThArgIndex, $ThArgValue)) { if (call_user_func(self::$Typehints[$ThHint], $ThArgValue)) { return TRUE; } } } } } throw new ErrorException($ErrMessage, 0, $ErrLevel, $ErrFile, $ErrLine); } } Typehint::initializeHandler(); function test(int $number) { echo $number; } test(5); test("5");

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.31
8.3.50.0090.00721.96
8.3.40.0120.00618.77
8.3.30.0070.00719.17
8.3.20.0070.00019.94
8.3.10.0040.00421.92
8.3.00.0040.00422.44
8.2.180.0120.00316.63
8.2.170.0110.00422.96
8.2.160.0040.01120.38
8.2.150.0060.00324.18
8.2.140.0080.00024.66
8.2.130.0150.00326.16
8.2.120.0000.00919.23
8.2.110.0060.00322.11
8.2.100.0090.00319.48
8.2.90.0040.00419.06
8.2.80.0000.00817.97
8.2.70.0030.00517.50
8.2.60.0040.00417.88
8.2.50.0030.00618.07
8.2.40.0030.00518.16
8.2.30.0040.00417.98
8.2.20.0000.00717.73
8.2.10.0050.00319.44
8.2.00.0030.00517.74
8.1.280.0110.00425.92
8.1.270.0090.00622.10
8.1.260.0040.00426.35
8.1.250.0050.00228.09
8.1.240.0100.00723.81
8.1.230.0080.00319.13
8.1.220.0000.00817.74
8.1.210.0040.00418.77
8.1.200.0060.00317.10
8.1.190.0030.00617.41
8.1.180.0000.00818.58
8.1.170.0060.00318.51
8.1.160.0040.00421.84
8.1.150.0030.00618.42
8.1.140.0000.00917.26
8.1.130.0000.00717.78
8.1.120.0070.00017.34
8.1.110.0040.00417.32
8.1.100.0070.00017.32
8.1.90.0040.00417.37
8.1.80.0050.00317.37
8.1.70.0030.00317.33
8.1.60.0060.00317.49
8.1.50.0000.00717.50
8.1.40.0000.00917.46
8.1.30.0080.00017.47
8.1.20.0030.00617.59
8.1.10.0030.00517.41
8.1.00.0040.00417.43
8.0.300.0040.00418.77
8.0.290.0040.00417.04
8.0.280.0000.00718.37
8.0.270.0040.00417.26
8.0.260.0040.00416.89
8.0.250.0030.00317.03
8.0.240.0030.00416.95
8.0.230.0000.00716.84
8.0.220.0000.00716.92
8.0.210.0000.00716.78
8.0.200.0000.00616.97
8.0.190.0070.00017.00
8.0.180.0000.00716.92
8.0.170.0030.00516.91
8.0.160.0030.00516.95
8.0.150.0040.00416.86
8.0.140.0080.00016.87
8.0.130.0000.00613.36
8.0.120.0000.00816.76
8.0.110.0080.00016.72
8.0.100.0040.00416.80
8.0.90.0080.00016.78
8.0.80.0100.00716.86
8.0.70.0000.00816.71
8.0.60.0050.00316.93
8.0.50.0050.00316.67
8.0.30.0120.00617.10
8.0.20.0110.00817.40
8.0.10.0040.00416.94
8.0.00.0100.00916.70
7.4.330.0000.00515.00
7.4.320.0000.00616.41
7.4.300.0030.00316.36
7.4.290.0000.00616.40
7.4.280.0000.00716.45
7.4.270.0050.00216.46
7.4.260.0000.00716.49
7.4.250.0000.00716.27
7.4.240.0000.00716.41
7.4.230.0030.00516.43
7.4.220.0080.00816.62
7.4.210.0100.00716.45
7.4.200.0050.00316.42
7.4.190.0030.00316.61
7.4.160.0100.00716.24
7.4.150.0070.01017.40
7.4.140.0050.01617.86
7.4.130.0080.01216.64
7.4.120.0080.00916.44
7.4.110.0060.01216.47
7.4.100.0130.00916.57
7.4.90.0090.01216.39
7.4.80.0160.01019.39
7.4.70.0100.01316.27
7.4.60.0060.00916.38
7.4.50.0030.00516.32
7.4.40.0040.01022.77
7.4.30.0120.00416.63
7.4.00.0030.01515.04
7.3.330.0000.00513.09
7.3.320.0050.00013.32
7.3.310.0000.00816.14
7.3.300.0000.00716.34
7.3.290.0040.01116.39
7.3.280.0100.00716.33
7.3.270.0130.00317.40
7.3.260.0130.01216.53
7.3.250.0100.00816.38
7.3.240.0040.01216.34
7.3.230.0100.00716.39
7.3.210.0120.01216.56
7.3.200.0080.01519.39
7.3.190.0170.00616.43
7.3.180.0100.00716.57
7.3.170.0090.00616.56
7.3.160.0060.01216.32
7.3.120.0110.00714.81
7.2.330.0030.01516.60
7.2.320.0150.00916.72
7.2.310.0070.01016.63
7.2.300.0120.01116.73
7.2.290.0080.00816.68
7.2.60.0130.00016.85
7.1.200.0090.00315.73
7.1.100.0080.00418.25
7.1.70.0000.00716.84
7.1.60.0100.01419.82
7.1.50.0070.01416.90
7.1.00.0130.06322.40
7.0.200.0000.00716.75
7.0.140.0070.07022.00
7.0.100.0200.06720.02
7.0.90.0130.07319.99
7.0.80.0130.08020.00
7.0.70.0130.07319.94
7.0.60.0070.08319.99
7.0.50.0070.09020.30
7.0.40.0130.08320.11
7.0.30.0170.07720.01
7.0.20.0130.07719.95
7.0.10.0100.06020.12
7.0.00.0170.05020.11
5.6.280.0000.07721.09
5.6.250.0200.07320.79
5.6.240.0200.07320.65
5.6.230.0030.08320.60
5.6.220.0100.08020.50
5.6.210.0030.07320.65
5.6.200.0130.08321.05
5.6.190.0070.05721.13
5.6.180.0000.08321.05
5.6.170.0030.08721.03
5.6.160.0000.09721.05
5.6.150.0070.07721.04
5.6.140.0030.08721.05
5.6.130.0070.08321.12
5.6.120.0100.08321.06
5.6.110.0130.07321.05
5.6.100.0170.07021.01
5.6.90.0170.07321.02
5.6.80.0130.05020.48
5.6.70.0070.06320.48
5.6.60.0100.07020.39
5.6.50.0030.07720.49
5.6.40.0200.05720.36
5.6.30.0070.07720.48
5.6.20.0100.07720.39
5.6.10.0130.05720.37
5.6.00.0030.06020.52
5.5.380.0070.08720.46
5.5.370.0070.04720.43
5.5.360.0070.08720.56
5.5.350.0100.08020.43
5.5.340.0130.07720.85
5.5.330.0100.08720.86
5.5.320.0170.07020.90
5.5.310.0130.08020.76
5.5.300.0130.06320.94
5.5.290.0100.08320.94
5.5.280.0100.08020.64
5.5.270.0030.05020.88
5.5.260.0030.09020.86
5.5.250.0100.07320.66
5.5.240.0100.05720.13
5.5.230.0070.08320.24
5.5.220.0030.08020.18
5.5.210.0070.07720.19
5.5.200.0030.08320.26
5.5.190.0100.07720.12
5.5.180.0000.06720.10
5.5.160.0000.06320.01
5.5.150.0170.07020.28
5.5.140.0170.07020.00
5.5.130.0070.08020.12
5.5.120.0170.06720.27
5.5.110.0070.08020.19
5.5.100.0070.07320.09
5.5.90.0130.07020.13
5.5.80.0030.08319.98
5.5.70.0100.07320.07
5.5.60.0000.05020.16
5.5.50.0000.04320.12
5.5.40.0070.05020.07
5.5.30.0170.07020.09
5.5.20.0100.07720.11
5.5.10.0130.07320.14
5.5.00.0070.05020.03
5.4.450.0100.04319.37
5.4.440.0030.06719.35
5.4.430.0100.07319.48
5.4.420.0070.08319.42
5.4.410.0070.07319.22
5.4.400.0100.07319.03
5.4.390.0130.06718.85
5.4.380.0030.07719.05
5.4.370.0070.03719.03
5.4.360.0030.08319.13
5.4.350.0070.07719.12
5.4.340.0030.05718.95
5.4.320.0070.07718.95
5.4.310.0100.07319.21
5.4.300.0070.07718.85
5.4.290.0130.06018.87
5.4.280.0100.07319.13
5.4.270.0030.08018.84
5.4.260.0070.08018.90
5.4.250.0130.07318.84
5.4.240.0100.05319.13
5.4.230.0130.07018.84
5.4.220.0170.02719.20
5.4.210.0070.06719.02
5.4.200.0200.04319.20
5.4.190.0070.06319.15
5.4.180.0070.07319.13
5.4.170.0100.07318.94
5.4.160.0100.06019.07
5.4.150.0070.06319.01
5.4.140.0100.07016.51
5.4.130.0130.04716.24
5.4.120.0100.07316.48
5.4.110.0100.04716.56
5.4.100.0100.05716.38
5.4.90.0030.04716.55
5.4.80.0100.06316.43
5.4.70.0070.07316.36
5.4.60.0070.07716.41
5.4.50.0100.06716.42
5.4.40.0100.07016.36
5.4.30.0130.06016.46
5.4.20.0100.06716.31
5.4.10.0070.07016.47
5.4.00.0000.08015.86
5.3.290.0030.04314.78
5.3.280.0030.04714.77
5.3.270.0030.06314.60
5.3.260.0070.04314.73
5.3.250.0070.07314.74
5.3.240.0070.07314.75
5.3.230.0100.07714.76
5.3.220.0100.04014.55
5.3.210.0070.07714.59
5.3.200.0100.07014.57
5.3.190.0030.08014.60
5.3.180.0070.04714.68
5.3.170.0170.06714.72
5.3.160.0130.07314.72
5.3.150.0100.07714.59
5.3.140.0100.07714.70
5.3.130.0030.04714.69
5.3.120.0070.06714.62
5.3.110.0030.07714.71
5.3.100.0030.05314.20
5.3.90.0000.07714.10
5.3.80.0000.04314.14
5.3.70.0030.07314.09
5.3.60.0030.05013.94
5.3.50.0100.07313.97
5.3.40.0070.08014.07
5.3.30.0130.06313.98
5.3.20.0070.03713.71
5.3.10.0130.06013.66
5.3.00.0070.07013.56
5.2.170.0170.05311.17
5.2.160.0000.04011.17
5.2.150.0000.06011.18
5.2.140.0000.06711.25
5.2.130.0070.05711.24
5.2.120.0030.05711.23
5.2.110.0030.06311.01
5.2.100.0030.06311.11
5.2.90.0070.06311.22
5.2.80.0100.06011.20
5.2.70.0030.06311.22
5.2.60.0030.03010.96
5.2.50.0030.06310.93
5.2.40.0000.04310.89
5.2.30.0100.05710.91
5.2.20.0100.06011.05
5.2.10.0030.05710.98
5.2.00.0070.05710.84
5.1.60.0030.0539.90
5.1.50.0230.0279.86
5.1.40.0100.04710.06
5.1.30.0070.04010.36
5.1.20.0030.05710.48
5.1.10.0030.0439.95
5.1.00.0000.05710.16
5.0.50.0030.0439.39
5.0.40.0000.0439.39
5.0.30.0070.0609.39
5.0.20.0030.0439.39
5.0.10.0030.0439.39
5.0.00.0100.0579.39
4.4.90.0000.0409.39
4.4.80.0030.0339.39
4.4.70.0030.0339.39
4.4.60.0070.0339.39
4.4.50.0000.0379.39
4.4.40.0070.0479.39
4.4.30.0000.0179.39
4.4.20.0030.0339.39
4.4.10.0000.0409.39
4.4.00.0000.0609.39
4.3.110.0070.0309.39
4.3.100.0070.0209.39
4.3.90.0000.0309.39
4.3.80.0000.0539.39
4.3.70.0030.0339.39
4.3.60.0100.0279.39
4.3.50.0000.0379.39
4.3.40.0000.0439.39
4.3.30.0000.0239.39
4.3.20.0000.0239.39
4.3.10.0000.0379.39
4.3.00.0000.0279.39

preferences:
43.29 ms | 401 KiB | 5 Q