3v4l.org

run code in 500+ PHP versions simultaneously
<?php function absint( $maybeint ): int { if ( ! is_numeric( $maybeint ) ) { return 0; } if ( is_float( $maybeint ) ) { $value = abs( $maybeint ); if ( $value >= PHP_INT_MAX ) { return PHP_INT_MAX; } else { return (int) $value; } } // Convert numeric-string to int. $value = (int) $maybeint; // Special case for the one integer which cannot survive abs(). if ( PHP_INT_MIN === $value ) { return PHP_INT_MAX; } return abs( $value ); } $maybeints = array( 'positive max int times 2' => PHP_INT_MAX * 2, 'zero' => 0, 'string' => 'foo', 'negative 1 int' => -1, 'positive 1 int' => 1, 'negative min int' => PHP_INT_MIN, 'negative min int minus 1' => PHP_INT_MIN - 1, 'negative min int times 2' => PHP_INT_MIN * 2, 'positive max int' => PHP_INT_MAX, 'positive max int plus 1' => PHP_INT_MAX + 1, 'positive max int as string' => (string) PHP_INT_MAX, 'positive max int times 1000 as string' => (string) PHP_INT_MAX . '000', ); foreach ( $maybeints as $case => $maybeint ) { echo "# $case\n\n"; echo 'Input: '; var_dump( $maybeint ); echo 'Output: '; var_dump( absint( $maybeint ) ); echo "\n"; }

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.5.90.0100.00916.63
8.5.80.0240.00416.63
8.5.70.0230.00716.82
8.5.60.0200.00216.67
8.5.50.0250.00616.40
8.5.40.0260.00716.39
8.5.30.0280.00616.39
8.5.20.0140.00416.63
8.5.10.0140.00516.88
8.5.00.0030.00616.93
8.4.240.0210.00219.43
8.4.230.0180.00819.40
8.4.220.0160.00619.61
8.4.210.0170.01219.76
8.4.200.0200.00619.60
8.4.190.0230.00719.79
8.4.180.0170.00319.56
8.4.170.0150.00719.85
8.4.160.0250.00919.71
8.4.150.0330.00819.80
8.4.140.0220.00617.60
8.4.130.0150.00517.73
8.4.120.0150.00518.03
8.4.110.0160.00817.63
8.4.100.0260.00217.68
8.4.90.0180.00417.88
8.4.80.0310.00817.95
8.4.70.0310.01017.87
8.4.60.0200.00517.91
8.4.50.0180.00317.80
8.4.40.0320.00717.55
8.4.30.0220.00717.57
8.4.20.0170.00417.76
8.4.10.0190.00617.75
8.3.330.0180.00618.41
8.3.320.0180.00418.48
8.3.310.0190.00418.61
8.3.300.0180.00518.49
8.3.290.0150.00918.50
8.3.280.0240.01218.34
8.3.270.0310.00416.68
8.3.260.0200.00416.46
8.3.250.0160.00316.84
8.3.240.0150.00416.78
8.3.230.0130.00616.63
8.3.220.0150.00416.64
8.3.210.0170.00416.60
8.3.200.0140.00516.80
8.3.190.0160.00416.85
8.3.180.0190.00416.64
8.3.170.0200.00716.88
8.3.160.0160.00516.51
8.3.150.0150.00516.63
8.3.140.0160.00416.75
8.3.130.0160.00216.70
8.3.120.0140.00416.78
8.3.110.0150.00316.60
8.3.100.0150.00516.75
8.3.90.0190.00416.82
8.3.80.0190.00316.66
8.3.70.0150.00516.72
8.3.60.0150.00616.79
8.3.50.0190.00316.91
8.3.40.0210.00518.04
8.3.30.0160.00217.92
8.3.20.0160.00317.71
8.3.10.0110.00618.04
8.3.00.0120.00617.99
8.2.330.0200.00618.16
8.2.320.0130.00817.94
8.2.310.0180.00218.10
8.2.300.0180.00118.10
8.2.290.0140.00316.73
8.2.280.0110.00616.59
8.2.270.0230.00616.68
8.2.260.0180.00716.76
8.2.250.0270.00216.58
8.2.240.0250.00616.36
8.2.230.0160.00516.38
8.2.220.0190.00616.57
8.2.210.0240.00416.65
8.2.200.0300.00616.73
8.2.190.0150.00416.66
8.2.180.0160.00516.55
8.2.170.0120.00817.72
8.2.160.0140.00318.21
8.2.150.0140.00418.00
8.2.140.0180.00418.09
8.2.130.0160.00117.98
8.2.120.0130.00318.07
8.2.110.0130.00418.00
8.2.100.0120.00418.02
8.2.90.0140.00317.82
8.2.80.0130.00617.90
8.2.70.0160.00417.90
8.2.60.0150.00217.89
8.2.50.0090.00717.82
8.2.40.0150.00617.96
8.2.30.0260.01017.89
8.2.20.0190.00817.88
8.2.10.0180.01017.91
8.2.00.0140.00417.96
8.1.340.0260.00817.51
8.1.330.0170.00516.13
8.1.320.0160.00516.15
8.1.310.0130.00416.38
8.1.300.0120.00616.12
8.1.290.0110.00616.01
8.1.280.0140.00416.02
8.1.270.0180.00517.77
8.1.260.0160.00417.65
8.1.250.0110.00917.52
8.1.240.0120.00617.55
8.1.230.0190.00417.78
8.1.220.0190.00817.74
8.1.210.0240.00917.86
8.1.200.0190.00717.37
8.1.190.0170.00617.51
8.1.180.0190.00617.52
8.1.170.0150.00317.66
8.1.160.0150.00217.52
8.1.150.0140.00317.61
8.1.140.0120.00417.63
8.1.130.0120.00417.66
8.1.120.0120.00417.75
8.1.110.0110.00517.68
8.1.100.0140.00217.68
8.1.90.0130.00517.54
8.1.80.0200.00617.74
8.1.70.0280.00917.61
8.1.60.0160.00617.76
8.1.50.0240.00417.79
8.1.40.0280.00817.76
8.1.30.0320.00817.70
8.1.20.0160.01017.63
8.1.10.0120.00617.86
8.1.00.0150.00417.70
8.0.300.0110.00517.16
8.0.290.0080.00717.00
8.0.280.0140.00517.06
8.0.270.0250.00417.03
8.0.260.0150.00217.05
8.0.250.0100.00517.23
8.0.240.0190.00417.08
8.0.230.0250.00917.04
8.0.220.0260.00416.87
8.0.210.0170.00417.04
8.0.200.0220.00617.02
8.0.190.0230.01017.09
8.0.180.0190.00917.08
8.0.170.0160.00517.21
8.0.160.0140.00717.22
8.0.150.0220.00716.86
8.0.140.0210.00816.82
8.0.130.0260.00917.14
8.0.120.0290.00816.89
8.0.110.0220.01216.98
8.0.100.0180.00817.06
8.0.90.0100.00816.59
8.0.80.0140.00416.82
8.0.70.0150.00517.02
8.0.60.0150.00117.04
8.0.50.0130.00716.88
8.0.30.0150.00616.79
8.0.20.0240.00717.16
8.0.10.0130.00417.06
8.0.00.0130.00517.06
7.4.330.0150.00516.64
7.4.320.0120.00616.73
7.4.300.0160.00316.66
7.4.290.0130.00416.60
7.4.280.0140.00716.84
7.4.270.0130.00316.79
7.4.260.0150.00616.79
7.4.250.0220.00716.54
7.4.240.0240.00316.65
7.4.230.0170.00816.63
7.4.220.0190.00916.57
7.4.210.0170.00816.65
7.4.200.0160.00516.77
7.4.190.0160.00516.82
7.4.180.0270.00916.52
7.4.160.0190.00816.70
7.4.150.0270.00816.59
7.4.140.0230.00316.47
7.4.130.0120.00416.54
7.4.120.0120.00616.48
7.4.110.0160.00416.69
7.4.100.0240.00916.73
7.4.90.0150.00516.65
7.4.80.0200.00616.46
7.4.70.0190.00316.65
7.4.60.0300.00316.59
7.4.50.0240.01016.38
7.4.40.0250.00416.62
7.4.30.0260.00416.62
7.4.20.0180.00316.63
7.4.10.0200.00216.59
7.4.00.0280.00516.50
7.3.330.0260.00716.46
7.3.320.0170.00816.41
7.3.310.0170.00816.53
7.3.300.0260.00716.55
7.3.290.0270.00516.43
7.3.280.0180.00816.58
7.3.270.0220.00516.53
7.3.260.0260.00616.62
7.3.250.0120.00516.48
7.3.240.0110.00516.51
7.3.230.0110.00516.44
7.3.220.0150.00416.52
7.3.210.0240.00616.59
7.3.200.0240.00616.36
7.3.190.0240.00816.54
7.3.180.0230.00716.34
7.3.170.0250.00516.57
7.3.160.0260.00516.36
7.3.150.0250.00516.64
7.3.140.0230.00516.41
7.3.130.0210.01216.37
7.3.120.0250.00416.35
7.3.110.0210.00716.41
7.3.100.0200.00716.41
7.3.90.0260.00516.66
7.3.80.0140.00216.43
7.3.70.0130.00416.50
7.3.60.0130.00516.43
7.3.50.0100.00516.59
7.3.40.0110.00716.67
7.3.30.0130.00416.43
7.3.20.0130.00518.54
7.3.10.0130.00216.56
7.3.00.0140.00416.57
7.2.340.0140.00116.53
7.2.330.0170.00516.53
7.2.320.0210.00816.58
7.2.310.0190.00716.58
7.2.300.0100.00416.59
7.2.290.0110.00616.39
7.2.280.0160.00616.56
7.2.270.0180.00616.58
7.2.260.0240.00516.58
7.2.250.0240.00816.63
7.2.240.0170.00716.51
7.2.230.0240.00716.43
7.2.220.0240.00916.48
7.2.210.0180.00916.64
7.2.200.0130.00316.68
7.2.190.0110.00416.59
7.2.180.0130.00516.64
7.2.170.0130.00516.88
7.2.160.0120.00316.81
7.2.150.0190.00218.32
7.2.140.0150.00618.57
7.2.130.0200.00118.74
7.2.120.0180.00718.46
7.2.110.0210.00616.62
7.2.100.0290.00516.94
7.2.90.0200.00716.66
7.2.80.0190.00616.69
7.2.70.0230.01216.80
7.2.60.0250.00616.63
7.2.50.0260.00416.73
7.2.40.0290.00516.86
7.2.30.0170.00616.82
7.2.20.0220.00816.69
7.2.10.0230.00716.68
7.2.00.0220.00616.92
7.1.330.0200.00715.69
7.1.320.0230.00417.46
7.1.310.0120.00517.58
7.1.300.0190.00217.41
7.1.290.0160.00215.63
7.1.280.0180.00215.76
7.1.270.1430.00315.89
7.1.260.0150.00217.36
7.1.250.0110.00517.26
7.1.240.0160.00417.45
7.1.230.0140.00517.31
7.1.220.0120.00617.52
7.1.210.0110.00617.45
7.1.200.0210.00717.61
7.1.190.0140.00117.57
7.1.180.0130.00317.36
7.1.170.0100.00515.66
7.1.160.0120.00715.66
7.1.150.0150.00315.78
7.1.140.0150.00515.50
7.1.130.0160.00615.78
7.1.120.0230.00615.54
7.1.110.0250.00315.74
7.1.100.0240.00515.64
7.1.90.0190.00715.79
7.1.80.0200.00115.80
7.1.70.0170.00515.46
7.1.60.0170.00415.83
7.1.50.0140.00515.80
7.1.40.0150.00215.61
7.1.30.0140.00215.49
7.1.20.0110.00415.83
7.1.10.0170.00715.77
7.1.00.0460.00515.46
7.0.330.0130.00215.33
7.0.320.0160.00715.43
7.0.310.0140.00515.23
7.0.300.0130.00215.27
7.0.290.0120.00715.33
7.0.280.0110.00415.28
7.0.270.0110.00515.36
7.0.260.0140.00415.14
7.0.250.0120.00515.38
7.0.240.0130.00415.25
7.0.230.0160.00315.54
7.0.220.0150.00515.23
7.0.210.0260.00615.42
7.0.200.0230.00615.41
7.0.190.0200.00515.36
7.0.180.0170.00515.38
7.0.170.0140.00515.59
7.0.160.0170.00815.17
7.0.150.0230.00917.36
7.0.140.0150.00217.35
7.0.130.0110.00417.40
7.0.120.0140.00415.52
7.0.110.0440.00315.36
7.0.100.0130.00315.29
7.0.90.0130.00315.30
7.0.80.0120.00415.36
7.0.70.0130.00515.34
7.0.60.0120.00215.34
7.0.50.0110.00615.38
7.0.40.0170.00115.35
7.0.30.0120.00415.37
7.0.20.0160.00115.37
7.0.10.0130.00415.40
7.0.00.0130.00315.48
5.6.400.0120.00415.74
5.6.390.0120.00215.80
5.6.380.0130.00315.84
5.6.370.0150.00315.80
5.6.360.0150.00415.80
5.6.350.0250.00315.57
5.6.340.0220.00715.77
5.6.330.0170.00315.84
5.6.320.0150.00315.90
5.6.310.0240.00715.84
5.6.300.0210.00715.61
5.6.290.0200.00515.68
5.6.280.0230.00215.68
5.6.270.0180.00615.68
5.6.260.0220.00515.58
5.6.250.0210.00615.87
5.6.240.0220.00715.63
5.6.230.0150.00315.98
5.6.220.0210.00615.73
5.6.210.0270.00615.77
5.6.200.0110.00515.82
5.6.190.0110.00415.66
5.6.180.0140.00115.65
5.6.170.0090.00615.95
5.6.160.0150.00515.82
5.6.150.0170.01015.67
5.6.140.0220.00715.71
5.6.130.0150.00415.85
5.6.120.0220.00715.80
5.6.110.0220.01315.79
5.6.100.0210.00415.73
5.6.90.0250.00415.46
5.6.80.0210.00815.85
5.6.70.0180.00515.64
5.6.60.0240.00515.88
5.6.50.0170.00515.72
5.6.40.0240.00415.76
5.6.30.0160.00615.68
5.6.20.0220.00615.80
5.6.10.0180.00715.68
5.6.00.0230.00315.52
5.5.380.0200.00615.71
5.5.370.0200.00415.77
5.5.360.0190.00315.68
5.5.350.0160.00415.56
5.5.340.0100.00415.59
5.5.330.0130.00215.46
5.5.320.0150.00615.49
5.5.310.0120.00415.55
5.5.300.0130.00615.68
5.5.290.0270.00515.67
5.5.280.0220.00715.68
5.5.270.0200.00315.55
5.5.260.0200.01015.84
5.5.250.0150.00415.80
5.5.240.0200.00415.74
5.5.230.0230.00515.73
5.5.220.0250.00415.91
5.5.210.0200.00915.87
5.5.200.0170.00815.48
5.5.190.0220.00715.70
5.5.180.0240.00415.78
5.5.170.0180.00515.72
5.5.160.0200.00515.39
5.5.150.0170.00415.57
5.5.140.0170.00315.40
5.5.130.0210.00415.37
5.5.120.0200.00515.37
5.5.110.0210.00715.30
5.5.100.0220.00515.74
5.5.90.0120.00115.86
5.5.80.0140.00215.59
5.5.70.0100.00415.89
5.5.60.0120.00115.84
5.5.50.0100.00315.73
5.5.40.0160.00515.74
5.5.30.0260.00315.52
5.5.20.0100.00715.87
5.5.10.0100.00515.54
5.5.00.0120.00315.72
5.4.450.0080.00314.32
5.4.440.0120.00214.32
5.4.430.0090.00314.32
5.4.420.0090.00314.32
5.4.410.0090.00314.32
5.4.400.0110.00214.32
5.4.390.0120.00214.32
5.4.380.0090.00214.32
5.4.370.0100.00214.32
5.4.360.0100.00414.32
5.4.350.0080.00314.32
5.4.340.0110.00214.32
5.4.330.0120.00214.32
5.4.320.0170.00314.32
5.4.310.0130.00214.32
5.4.300.0120.00114.32
5.4.290.0110.00314.32
5.4.280.0120.00214.32
5.4.270.0100.00314.32
5.4.260.0150.00214.32
5.4.250.0170.00714.32
5.4.240.0140.00714.32
5.4.230.0150.00614.32
5.4.220.0220.00414.32
5.4.210.0140.00514.32
5.4.200.0130.00114.32
5.4.190.0160.00614.32
5.4.180.0150.00614.32
5.4.170.0110.00314.32
5.4.160.0190.00614.32
5.4.150.0150.00414.32
5.4.140.0140.00514.32
5.4.130.0190.00414.32
5.4.120.0110.00214.32
5.4.110.0160.00514.32
5.4.100.0200.00214.32
5.4.90.0220.00414.32
5.4.80.0120.00514.32
5.4.70.0080.00314.32
5.4.60.0090.00314.32
5.4.50.0090.00114.32
5.4.40.0070.00414.32
5.4.30.0090.00114.32
5.4.20.0080.00214.32
5.4.10.0100.00114.32
5.4.00.0090.00314.32
5.3.290.0100.00314.32
5.3.280.0130.00414.32
5.3.270.0150.00414.32
5.3.260.0100.00414.32
5.3.250.0150.00514.32
5.3.240.0220.00414.32
5.3.230.0170.00714.32
5.3.220.0130.00414.32
5.3.210.0140.00214.32
5.3.200.0160.00414.32
5.3.190.0140.00314.32
5.3.180.0200.00714.32
5.3.170.0110.00414.32
5.3.160.0120.00114.32
5.3.150.0080.00214.32
5.3.140.0080.00214.32
5.3.130.0150.00414.32
5.3.120.0100.00514.32
5.3.110.0170.00414.32
5.3.100.0200.00514.32
5.3.90.0160.00614.32
5.3.80.0160.00714.32
5.3.70.0170.00614.32
5.3.60.0130.00614.32
5.3.50.0090.00514.32
5.3.40.0150.00714.32
5.3.30.0180.00414.32
5.3.20.0130.00214.32
5.3.10.0180.00414.32
5.3.00.0190.00414.32
5.2.170.0110.00114.32
5.2.160.0110.00614.32
5.2.150.0130.00614.32
5.2.140.0120.00714.32
5.2.130.0130.00514.32
5.2.120.0100.00114.32
5.2.110.0160.00314.32
5.2.100.0120.00814.32
5.2.90.0130.00614.32
5.2.80.0120.00314.32
5.2.70.0060.00214.32
5.2.60.0080.00314.32
5.2.50.0060.00214.32
5.2.40.0070.00214.32
5.2.30.0060.00314.32
5.2.20.0060.00414.32
5.2.10.0070.00214.32
5.2.00.0070.00314.32
5.1.60.0060.00314.32
5.1.50.0060.00214.32
5.1.40.0050.00214.32
5.1.30.0060.00214.32
5.1.20.0050.00414.32
5.1.10.0060.00214.32
5.1.00.0050.00214.32
5.0.50.0080.00314.32
5.0.40.0060.00414.32
5.0.30.0070.00514.32
5.0.20.0110.00214.32
5.0.10.0080.00414.32
5.0.00.0100.00214.32
4.4.90.0050.00014.32
4.4.80.0060.00314.32
4.4.70.0060.00314.32
4.4.60.0070.00214.32
4.4.50.0090.00114.32
4.4.40.0070.00414.32
4.4.30.0060.00014.32
4.4.20.0030.00214.32
4.4.10.0040.00114.32
4.4.00.0010.00414.32
4.3.110.0030.00114.32
4.3.100.0030.00114.32
4.3.90.0040.00014.32
4.3.80.0040.00014.32
4.3.70.0030.00214.32
4.3.60.0020.00214.32
4.3.50.0040.00014.32
4.3.40.0010.00314.32
4.3.30.0030.00014.32
4.3.20.0020.00114.32
4.3.10.0030.00014.32
4.3.00.0030.00014.32

preferences:
55.46 ms | 3083 KiB | 5 Q