3v4l.org

run code in 300+ PHP versions simultaneously
<?php $args = '$user, $number'; $body = 'echo "#$number: Hello $user.\n";'; function _create_function_without_eval($args, $body) { $func_name = sprintf('temp_func_%s', md5($body)); $code = sprintf("<?php if (!function_exists('%s')) {function %s(%s){%s}}", $func_name, $func_name, $args, $body); $func_file = tempnam('/tmp', $func_name); $handle = fopen($func_file, "w+"); fwrite($handle, $code); fclose($handle); include $func_file; unlink($func_file); return function(...$user_args) use ($func_name) { return call_user_func_array($func_name, $user_args); }; } function _create_function_with_eval($args, $body) { $func_name = sprintf('temp_func_%s', md5($body)); $code = sprintf("if (!function_exists('%s')) {function %s(%s){%s}}", $func_name, $func_name, $args, $body); eval($code); return function(...$user_args) use ($func_name) { return call_user_func_array($func_name, $user_args); }; } $fn_deprecated = create_function($args, $body); $fn_with_eval = _create_function_with_eval($args, $body); $fn_without_eval = _create_function_without_eval($args, $body); echo $fn_deprecated('Old Bob', '1'); echo $fn_without_eval('Bob without eval', 2); echo $fn_with_eval('Bob with eval', 3);

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.4.130.0070.00318.18
8.4.120.0150.00622.22
8.4.110.0100.00918.86
8.4.100.0120.00818.21
8.4.90.0100.00920.61
8.4.80.0100.01020.86
8.4.70.0130.00717.87
8.4.60.0120.00918.90
8.4.50.0110.00918.39
8.4.40.0030.00619.59
8.4.30.0090.01118.00
8.4.20.0100.01018.58
8.4.10.0130.00717.72
8.3.260.0120.00816.54
8.3.250.0120.00718.82
8.3.240.0130.00616.63
8.3.230.0090.00916.77
8.3.220.0100.00918.92
8.3.210.0120.00616.56
8.3.200.0060.00916.69
8.3.190.0060.00517.16
8.3.180.0130.00618.84
8.3.170.0070.01119.09
8.3.160.0070.00718.38
8.3.150.0040.00716.98
8.3.140.0100.00720.70
8.3.130.0080.00018.47
8.3.120.0090.00018.93
8.3.110.0060.00320.94
8.3.100.0040.00416.63
8.3.90.0050.00326.77
8.3.80.0270.00224.40
8.3.70.0150.01524.57
8.3.60.0260.00624.70
8.3.50.0110.00521.79
8.3.40.0270.00324.83
8.3.30.0190.00824.75
8.3.20.0180.00324.79
8.3.10.0100.01027.27
8.3.00.0170.00927.11
8.2.290.0060.00220.45
8.2.280.0090.01116.81
8.2.270.0110.00716.95
8.2.260.0070.00418.75
8.2.250.0060.00316.85
8.2.240.0030.00618.80
8.2.230.0040.00422.58
8.2.220.0060.00324.06
8.2.210.0040.00426.77
8.2.200.0230.00424.56
8.2.190.0220.00723.73
8.2.180.0130.01223.79
8.2.170.0160.00726.90
8.2.160.0130.00425.03
8.2.150.0150.00027.51
8.2.140.0180.00427.75
8.2.130.0170.00926.57
8.2.120.0230.00628.59
8.2.110.0220.00425.61
8.2.100.0230.00524.26
8.2.90.0200.00624.96
8.2.80.0140.01025.12
8.2.70.0170.00824.31
8.2.60.0180.00724.43
8.2.50.0160.00924.47
8.2.40.0190.00625.12
8.2.30.0180.00524.97
8.2.20.0190.00624.44
8.2.10.0180.00724.50
8.2.00.0210.00524.25
8.1.330.0140.00522.20
8.1.320.0100.00816.27
8.1.310.0030.01417.01
8.1.300.0040.00418.16
8.1.290.0250.00230.84
8.1.280.0250.00228.38
8.1.270.0250.00625.69
8.1.260.0200.00628.59
8.1.250.0150.01029.46
8.1.240.0220.00425.90
8.1.230.0160.00025.87
8.1.220.0120.00224.70
8.1.210.0090.00424.80
8.1.200.0100.00324.17
8.1.190.0110.00124.09
8.1.180.0090.00524.47
8.1.170.0080.00524.68
8.1.160.0110.00524.86
8.1.150.0050.00924.88
8.1.140.0180.00625.52
8.1.130.0130.00625.45
8.1.120.0140.00824.12
8.1.110.0170.00724.10
8.1.100.0200.00524.12
8.1.90.0190.00724.08
8.1.80.0170.00324.13
8.1.70.0140.00624.14
8.1.60.0190.00624.17
8.1.50.0200.00524.15
8.1.40.0240.00524.15
8.1.30.0120.00724.27
8.1.20.0100.00424.18
8.1.10.0140.00224.25
8.1.00.0100.00324.14
8.0.300.0120.00024.80
8.0.290.0100.00223.88
8.0.280.0080.00324.63
8.0.270.0090.00324.08
8.0.260.0110.00225.52
8.0.250.0100.00123.91
8.0.240.0120.00623.92
8.0.230.0060.00523.85
8.0.220.0090.00323.83
8.0.210.0090.00323.92
8.0.200.0180.00623.91
8.0.190.0170.00723.91
8.0.180.0270.00323.88
8.0.170.0210.00723.92
8.0.160.0210.00223.91
8.0.150.0170.00423.90
8.0.140.0120.00823.80
8.0.130.0200.00522.09
8.0.120.0140.00623.87
8.0.110.0150.00823.84
8.0.100.0130.00321.60
8.0.90.0100.00521.54
8.0.80.0080.00820.36
8.0.70.0090.00221.49
8.0.60.0080.00221.49
8.0.50.0060.00521.54
8.0.30.0110.00521.54
8.0.20.0150.00621.70
8.0.10.0090.00621.61
8.0.00.0150.00620.30
7.4.330.0200.00223.19
7.4.320.0170.00623.73
7.4.300.0090.00523.66
7.4.290.0100.00523.65
7.4.280.0080.00423.69
7.4.270.0090.00423.73
7.4.260.0070.00723.69
7.4.250.0130.00523.76
7.4.240.0170.00423.80
7.4.230.0160.00221.25
7.4.220.0120.00421.38
7.4.210.0080.01119.45
7.4.200.0090.00521.41
7.4.190.0160.00623.82
7.4.180.0180.00423.71
7.4.160.0120.00719.02
7.4.150.0130.00723.74
7.4.140.0100.01019.51
7.4.130.0150.00621.26
7.4.120.0110.00818.99
7.4.110.0110.00721.27
7.4.100.0110.01021.36
7.4.90.0140.00621.26
7.4.80.0100.00822.28
7.4.70.0140.00921.40
7.4.60.0150.00821.37
7.4.50.0110.00721.30
7.4.40.0140.00821.33
7.4.30.0110.00823.65
7.4.20.0110.00723.79
7.4.10.0150.00420.76
7.4.00.0120.00518.57
7.3.330.0150.00422.15
7.3.320.0140.00322.19
7.3.310.0170.00323.67
7.3.300.0090.00421.29
7.3.290.0090.00521.25
7.3.280.0120.00420.11
7.3.270.0140.00323.70
7.3.260.0130.00618.94
7.3.250.0120.00923.70
7.3.240.0120.00718.92
7.3.230.0150.00721.30
7.3.220.0190.00723.67
7.3.210.0170.00321.34
7.3.200.0120.00821.27
7.3.190.0170.00621.26
7.3.180.0160.00521.39
7.3.170.0140.00821.24
7.3.160.0150.00321.31
7.3.150.0090.00323.63
7.3.140.0070.00523.62
7.3.130.0080.00520.73
7.3.120.0070.00918.48
7.3.110.0100.00418.38
7.3.100.0110.00718.52
7.3.90.0110.00618.50
7.3.80.0090.00718.42
7.3.70.0100.00518.44
7.3.60.0080.00718.40
7.3.50.0090.00718.37
7.3.40.0070.00818.38
7.3.30.0100.00618.41
7.3.20.0110.00619.55
7.3.10.0090.00619.51
7.3.00.0080.00719.51
7.2.340.0160.00623.70
7.2.330.0160.00621.37
7.2.320.0140.00821.32
7.2.310.0150.00821.34
7.2.300.0150.00521.42
7.2.290.0100.00421.33
7.2.280.0130.00523.68
7.2.270.0180.00523.69
7.2.260.0130.00520.80
7.2.250.0120.00919.43
7.2.240.0100.00818.54
7.2.230.0080.00918.47
7.2.220.0100.00818.54
7.2.210.0110.00718.59
7.2.200.0120.00518.61
7.2.190.0100.00718.58
7.2.180.0110.00718.52
7.2.170.0100.00518.49
7.2.160.0090.00819.47
7.2.150.0120.00520.34
7.2.140.0110.00920.42
7.2.130.0100.00620.42
7.2.120.0080.00520.30
7.2.110.0330.00718.48
7.2.100.0500.00418.50
7.2.90.0320.00718.59
7.2.80.0370.00718.41
7.2.70.0350.00618.64
7.2.60.0390.00618.53
7.2.50.0380.00718.54
7.2.40.0350.00618.62
7.2.30.0590.00718.72
7.2.20.0400.00818.62
7.2.10.0340.00718.67
7.2.00.0370.00818.69
7.1.330.0090.00918.77
7.1.320.0100.00618.78
7.1.310.0080.00918.80
7.1.300.0120.00518.80
7.1.290.0100.00618.84
7.1.280.0110.00518.81
7.1.270.0110.00618.75
7.1.260.0080.00618.68
7.1.250.0120.00619.48
7.1.240.0140.00520.77
7.1.230.0380.00818.02
7.1.220.0410.00617.98
7.1.210.0350.00718.02
7.1.200.0420.00618.00
7.1.190.0400.00617.98
7.1.180.0410.00417.96
7.1.170.0410.00417.96
7.1.160.0470.00617.98
7.1.150.0460.00618.06
7.1.140.0430.00618.05
7.1.130.0380.00618.02
7.1.120.0600.00618.04
7.1.110.0490.00618.12
7.1.100.0440.00617.96
7.1.90.0430.00817.97
7.1.80.0470.00718.01
7.1.70.0380.00918.04
7.1.60.0460.00825.25
7.1.50.0550.00625.29
7.1.40.0530.00725.35
7.1.30.0590.00625.28
7.1.20.0480.00525.22
7.1.10.0420.00618.06
7.1.00.0420.00318.00
7.0.330.0100.00320.59
7.0.320.0100.00520.52
7.0.310.0410.00618.73
7.0.300.0360.00418.78
7.0.290.0330.00718.80
7.0.280.0490.00617.76
7.0.270.0340.01018.77
7.0.260.0340.00918.68
7.0.250.0340.00818.81
7.0.240.0380.00718.84
7.0.230.0390.00718.87
7.0.220.0360.01018.82
7.0.210.0390.00718.82
7.0.200.0350.00718.92
7.0.190.0410.00418.81
7.0.180.0440.00418.86
7.0.170.0400.00618.90
7.0.160.0280.00718.82
7.0.150.0310.00818.75
7.0.140.0400.00518.87
7.0.130.0340.00818.90
7.0.120.0300.00518.80
7.0.110.0290.00618.78
7.0.100.0310.00818.74
7.0.90.0590.00818.77
7.0.80.0260.00618.69
7.0.70.0350.00618.72
7.0.60.0300.00718.79
7.0.50.0310.00618.88
7.0.40.0300.00918.28
7.0.30.0310.00218.33
7.0.20.0270.00718.31
7.0.10.0310.00518.21
7.0.00.0270.00718.22
5.6.400.0100.00520.31
5.6.390.0100.00620.43
5.6.380.0060.00717.94
5.6.370.0140.00518.84
5.6.360.0110.00718.90
5.6.350.0110.00818.80
5.6.340.0110.00819.04
5.6.330.0090.01118.94
5.6.320.0140.00618.99
5.6.310.0110.00618.95
5.6.300.0110.00618.93
5.6.290.0090.00518.82
5.6.280.0080.01118.88
5.6.270.0130.00418.97
5.6.260.0090.00418.74
5.6.250.0120.00418.87
5.6.240.0130.00718.86
5.6.230.0120.00618.90
5.6.220.0120.00718.89
5.6.210.0120.00818.95
5.6.200.0130.00418.83
5.6.190.0140.00518.84
5.6.180.0120.00618.96
5.6.170.0130.00718.80
5.6.160.0120.00618.85
5.6.150.0130.00318.86
5.6.140.0080.00818.80
5.6.130.0140.00518.80
5.6.120.0110.00718.94
5.6.110.0100.00918.90
5.6.100.0140.00418.81
5.6.90.0070.00918.97
5.6.80.0090.00718.82
5.6.70.0060.00818.78
5.6.60.0080.00518.87
5.6.50.0100.00818.82
5.6.40.0120.00618.81
5.6.30.0140.00318.77
5.6.20.0120.00818.79
5.6.10.0130.00418.81
5.6.00.0110.00718.71

preferences:
35.41 ms | 403 KiB | 5 Q