3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (!function_exists('interface_exists')) { die('PHP version too old'); } $throwables = listThrowableClasses(); $throwablesPerParent = splitInParents($throwables); printTree($throwablesPerParent); if (count($throwablesPerParent) !== 0) { die('ERROR!!!'); } function listThrowableClasses() { $result = []; if (interface_exists('Throwable')) { foreach (get_declared_classes() as $cn) { $implements = class_implements($cn); if (isset($implements['Throwable'])) { $result[] = $cn; } } } else { foreach (get_declared_classes() as $cn) { if ($cn === 'Exception' || is_subclass_of($cn, 'Exception')) { $result[] = $cn; } } } return $result; } function splitInParents($classes) { $result = []; foreach ($classes as $cn) { $parent = (string) get_parent_class($cn); if (isset($result[$parent])) { $result[$parent][] = $cn; } else { $result[$parent] = [$cn]; } } return $result; } function printTree(&$tree) { if (!isset($tree[''])) { die('No root classes!!!'); } printLeaves($tree, '', 0); } function printLeaves(&$tree, $parent, $level) { if (isset($tree[$parent])) { $leaves = $tree[$parent]; unset($tree[$parent]); natcasesort($leaves); $leaves = array_values($leaves); $count = count($leaves); for ($i = 0; $i < $count; ++$i) { $leaf = $leaves[$i]; echo str_repeat(' ', $level), $leaf, "\n"; printLeaves($tree, $leaf, $level + 1); } } }

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.120.0090.01124.13
8.4.110.0110.01018.79
8.4.100.0130.00818.80
8.4.90.0120.00920.77
8.4.80.0100.01117.81
8.4.70.0120.00717.95
8.4.60.0080.00318.78
8.4.50.0090.01118.97
8.4.40.0080.01219.43
8.4.30.0160.00319.44
8.4.20.0260.00318.09
8.4.10.0320.00218.47
8.3.250.0110.00719.08
8.3.240.0120.00817.16
8.3.230.0110.00916.51
8.3.220.0080.00518.88
8.3.210.0050.00216.84
8.3.200.0040.00516.57
8.3.190.0100.00617.21
8.3.180.0040.00418.30
8.3.170.0070.01118.92
8.3.160.0150.00418.53
8.3.150.0250.00618.64
8.3.140.0240.00916.59
8.3.130.0190.00916.73
8.3.120.0150.01017.75
8.3.110.0240.00617.00
8.3.100.0250.00220.34
8.3.90.0280.00619.99
8.3.80.0280.00616.37
8.3.70.0300.00716.64
8.3.60.0310.00917.24
8.3.50.0230.01118.87
8.3.40.0240.01217.90
8.3.30.0220.00819.22
8.3.20.0150.01022.48
8.3.10.0150.00622.89
8.3.00.0120.00922.78
8.2.290.0050.00421.98
8.2.280.0040.00418.39
8.2.270.0140.01417.16
8.2.260.0200.00716.56
8.2.250.0150.00817.33
8.2.240.0190.00917.54
8.2.230.0160.00818.93
8.2.220.0180.00526.97
8.2.210.0210.00819.90
8.2.200.0210.01216.61
8.2.190.0250.00917.04
8.2.180.0230.01219.36
8.2.170.0280.00618.04
8.2.160.0210.00920.26
8.2.150.0150.00623.30
8.2.140.0130.00723.03
8.2.130.0130.00723.22
8.2.120.0130.00822.56
8.2.110.0120.00822.18
8.2.100.0110.00722.21
8.2.90.0150.00722.34
8.2.80.0120.00822.23
8.2.70.0110.00922.17
8.2.60.0150.00622.60
8.2.50.0140.00521.09
8.2.40.0140.00721.27
8.2.30.0140.00521.08
8.2.20.0130.00620.93
8.2.10.0130.00720.90
8.2.00.0130.00520.87
8.1.330.0130.00621.89
8.1.320.0090.01116.25
8.1.310.0180.00516.52
8.1.300.0100.00418.34
8.1.290.0190.00819.07
8.1.280.0170.01119.35
8.1.270.0100.00523.15
8.1.260.0130.00623.37
8.1.250.0140.00423.54
8.1.240.0130.00722.10
8.1.230.0140.00622.45
8.1.220.0140.00422.17
8.1.210.0120.00822.23
8.1.200.0140.00622.13
8.1.190.0130.00721.26
8.1.180.0140.00721.07
8.1.170.0150.00721.17
8.1.160.0130.00720.89
8.1.150.0130.00620.85
8.1.140.0130.00620.89
8.1.130.0120.00520.22
8.1.120.0120.00720.25
8.1.110.0120.00519.70
8.1.100.0130.00419.68
8.1.90.0120.00619.92
8.1.80.0120.00619.82
8.1.70.0110.00519.59
8.1.60.0110.00719.65
8.1.50.0130.00519.60
8.1.40.0130.00519.38
8.1.30.0110.00619.38
8.1.20.0130.00519.29
8.1.10.0130.00419.12
8.1.00.0120.00619.22
8.0.300.0130.00422.08
8.0.290.0130.00721.79
8.0.280.0130.00519.98
8.0.270.0090.00720.58
8.0.260.0120.00519.92
8.0.250.0100.00619.97
8.0.240.0130.00419.66
8.0.230.0120.00619.67
8.0.220.0130.00519.71
8.0.210.0140.00519.50
8.0.200.0120.00619.26
8.0.190.0120.00519.28
8.0.180.0120.00519.27
8.0.170.0150.00519.00
8.0.160.0110.00718.92
8.0.150.0140.00518.80
8.0.140.0150.00418.78
8.0.130.0120.00718.65
8.0.120.0140.00618.41
8.0.110.0130.00518.40
8.0.100.0120.00718.40
8.0.90.0130.00418.23
8.0.80.0130.00518.32
8.0.70.0130.00518.36
8.0.60.0150.00518.34
8.0.50.0140.00518.36
8.0.30.0120.00618.24
8.0.20.0120.00618.20
8.0.10.0130.00618.31
8.0.00.0100.00718.33
7.4.330.0110.00518.65
7.4.320.0150.00519.54
7.4.300.0130.00619.13
7.4.290.0180.00419.12
7.4.280.0160.00518.70
7.4.270.0160.00518.63
7.4.260.0150.00518.62
7.4.250.0140.00518.25
7.4.240.0140.00518.25
7.4.230.0140.00518.27
7.4.220.0150.00518.13
7.4.210.0140.00618.15
7.4.200.0140.00618.18
7.4.190.0150.00618.23
7.4.180.0150.00618.21
7.4.160.0140.00618.03
7.4.150.0150.00517.99
7.4.140.0150.00517.99
7.4.130.0140.00617.87
7.4.120.0150.00617.77
7.4.110.0150.00617.78
7.4.100.0140.00617.79
7.4.90.0150.00617.76
7.4.80.0130.00717.77
7.4.70.0140.00617.72
7.4.60.0130.00717.75
7.4.50.0130.00717.61
7.4.40.0140.00617.61
7.4.30.0130.00717.60
7.4.20.0130.00717.53
7.4.10.0120.00717.48
7.4.00.0120.00717.47
7.3.330.0150.00519.08
7.3.320.0140.00518.06
7.3.310.0140.00518.16
7.3.300.0140.00518.16
7.3.290.0150.00618.03
7.3.280.0130.00717.87
7.3.270.0140.00517.95
7.3.260.0140.00517.96
7.3.250.0140.00617.83
7.3.240.0140.00717.81
7.3.230.0140.00717.69
7.3.220.0150.00617.73
7.3.210.0150.00617.70
7.3.200.0150.00617.70
7.3.190.0150.00617.63
7.3.180.0150.00617.67
7.3.170.0130.00717.56
7.3.160.0140.00717.56
7.3.150.0140.00717.59
7.3.140.0150.00617.51
7.3.130.0150.00617.45
7.3.120.0130.00717.39
7.3.110.0130.00717.16
7.3.100.0130.00617.07
7.3.90.0130.00717.19
7.3.80.0130.00717.03
7.3.70.0120.00716.98
7.3.60.0110.00816.88
7.3.50.0120.00816.93
7.3.40.0120.00816.80
7.3.30.0120.00716.74
7.3.20.0180.00817.23
7.3.10.0220.00717.23
7.3.00.0210.00817.20
7.2.340.0150.00717.81
7.2.330.0140.00817.79
7.2.320.0160.00717.80
7.2.310.0160.00617.78
7.2.300.0160.00717.76
7.2.290.0150.00717.68
7.2.280.0150.00717.70
7.2.270.0140.00817.63
7.2.260.0160.00717.58
7.2.250.0140.00817.57
7.2.240.0140.00717.30
7.2.230.0140.00717.24
7.2.220.0150.00617.24
7.2.210.0140.00817.17
7.2.200.0140.00817.16
7.2.190.0130.00717.08
7.2.180.0120.00817.05
7.2.170.0130.00816.97
7.2.160.0130.00716.89
7.2.150.0210.00717.41
7.2.140.0200.00717.44
7.2.130.0220.00817.47
7.2.120.0170.00717.42
7.2.110.0160.00817.40
7.2.100.0170.00817.40
7.2.90.0260.00717.35
7.2.80.0250.00817.29
7.2.70.0250.00817.32
7.2.60.0240.00817.30
7.2.50.0240.00817.30
7.2.40.0250.00717.31
7.2.30.0230.00817.32
7.2.20.0280.00817.30
7.2.10.0260.00817.30
7.2.00.0230.00817.34
7.1.330.0150.00716.96
7.1.320.0180.00716.95
7.1.310.0170.00716.88
7.1.300.0150.00816.78
7.1.290.0180.00716.75
7.1.280.0160.00716.68
7.1.270.0180.00716.60
7.1.260.0190.00716.56
7.1.250.0160.00716.47
7.1.240.0170.00716.46
7.1.230.0190.00716.46
7.1.220.0180.00716.44
7.1.210.0240.00716.39
7.1.200.0260.00716.34
7.1.190.0290.00716.34
7.1.180.0240.00816.31
7.1.170.0230.00816.33
7.1.160.0240.00816.33
7.1.150.0240.00816.31
7.1.140.0260.00716.33
7.1.130.0250.00816.32
7.1.120.0240.00716.29
7.1.110.0250.00616.35
7.1.100.0250.00816.35
7.1.90.0280.00716.32
7.1.80.0250.00716.35
7.1.70.0230.00716.32
7.1.60.0250.00817.07
7.1.50.0230.00717.10
7.1.40.0220.00717.07
7.1.30.0360.00717.07
7.1.20.0210.00717.05
7.1.10.0200.00716.31
7.1.00.0200.00716.33
7.0.330.0210.00716.17
7.0.320.0200.00716.17
7.0.310.0280.00616.07
7.0.300.0270.00716.04
7.0.290.0270.00816.06
7.0.280.0250.00716.13
7.0.270.0270.00716.07
7.0.260.0230.00716.08
7.0.250.0260.00716.12
7.0.240.0240.00716.13
7.0.230.0240.00616.13
7.0.220.0240.00716.09
7.0.210.0220.00816.11
7.0.200.0240.00616.08
7.0.190.0210.00716.13
7.0.180.0190.00716.13
7.0.170.0230.00616.11
7.0.160.0220.00716.07
7.0.150.0210.00716.07
7.0.140.0190.00716.11
7.0.130.0210.00716.10
7.0.120.0200.00716.11
7.0.110.0180.00816.09
7.0.100.0180.00816.10
7.0.90.0180.00716.06
7.0.80.0190.00716.07
7.0.70.0200.00716.04
7.0.60.0180.00716.07
7.0.50.0180.00816.06
7.0.40.0170.00716.09
7.0.30.0190.00616.10
7.0.20.0200.00716.04
7.0.10.0180.00816.07
7.0.00.0190.00616.08
5.6.400.0140.01116.40
5.6.390.0130.01116.38
5.6.380.0140.01116.29
5.6.370.0150.01116.64
5.6.360.0130.01216.68
5.6.350.0140.01116.63
5.6.340.0150.01116.64
5.6.330.0150.01216.62
5.6.320.0130.01216.65
5.6.310.0140.01116.62
5.6.300.0140.01016.52
5.6.290.0140.01116.54
5.6.280.0130.01116.57
5.6.270.0150.01016.56
5.6.260.0130.01116.55
5.6.250.0140.01116.54
5.6.240.0140.01116.53
5.6.230.0140.01016.58
5.6.220.0140.01116.58
5.6.210.0150.01116.56
5.6.200.0140.01116.58
5.6.190.0150.01116.59
5.6.180.0140.01116.59
5.6.170.0160.01116.57
5.6.160.0140.01116.60
5.6.150.0140.01216.59
5.6.140.0140.01116.57
5.6.130.0140.01116.59
5.6.120.0140.01116.61
5.6.110.0140.01116.55
5.6.100.0140.01016.54
5.6.90.0130.01116.54
5.6.80.0130.01116.45
5.6.70.0120.01116.51
5.6.60.0130.01116.52
5.6.50.0130.01116.48
5.6.40.0120.01216.49
5.6.30.0120.01216.49
5.6.20.0140.01016.51
5.6.10.0140.01016.48
5.6.00.0130.01116.49
5.5.380.0230.00616.13
5.5.370.0270.00315.93
5.5.360.0210.00915.70
5.5.350.0130.01015.75
5.5.340.0200.00315.89
5.5.330.0130.00015.75
5.5.320.0280.00015.75
5.5.310.0220.00815.79
5.5.300.0230.00615.58
5.5.290.0200.00915.91
5.5.280.0160.01315.63
5.5.270.0200.00915.93
5.5.260.0220.00715.70
5.5.250.0200.00815.84
5.5.240.0300.00315.93
5.5.230.0180.01115.58
5.5.220.0170.00815.93
5.5.210.0200.00915.93
5.5.200.0180.00915.55
5.5.190.0280.00015.66
5.5.180.0240.00415.68
5.5.170.0210.00715.68
5.5.160.0210.00615.75
5.5.150.0270.00315.75
5.5.140.0300.00915.28
5.5.130.0240.00715.58
5.5.120.0190.00915.77
5.5.110.0160.01215.48
5.5.100.0190.00915.96
5.5.90.0250.00315.94
5.5.80.0200.00815.95
5.5.70.0240.00416.12
5.5.60.0150.01015.90
5.5.50.0220.00615.61
5.5.40.0230.00515.73
5.5.30.0250.00315.75
5.5.20.0200.00815.73
5.5.10.0250.00515.79
5.5.00.0210.00315.80
5.4.450.0110.00714.64
5.4.440.0190.00014.64
5.4.430.0180.00414.64
5.4.420.0160.00714.64
5.4.410.0220.00014.64
5.4.400.0200.00314.64
5.4.390.0120.00914.64
5.4.380.0190.00314.64
5.4.370.0180.00414.64
5.4.360.0170.00614.64
5.4.350.0190.00314.64
5.4.340.0110.01114.64
5.4.330.0200.00314.64
5.4.320.0080.01114.64
5.4.310.0190.00314.64
5.4.300.0090.01314.64
5.4.290.0150.00814.64
5.4.280.0200.00314.64
5.4.270.0160.00514.64
5.4.260.0160.00614.64
5.4.250.0230.00014.64
5.4.240.0200.00314.64
5.4.230.0220.00614.64
5.4.220.0120.00614.64
5.4.210.0090.00914.64
5.4.200.0190.00314.64
5.4.190.0150.00714.64
5.4.180.0190.00314.64
5.4.170.0180.00414.64
5.4.160.0180.00614.64
5.4.150.0190.00814.64
5.4.140.0160.00414.64
5.4.130.0190.00614.64
5.4.120.0130.00914.64
5.4.110.0150.00714.64
5.4.100.0170.00414.64
5.4.90.0150.00814.64
5.4.80.0180.00414.64
5.4.70.0220.00014.64
5.4.60.0210.00014.64
5.4.50.0140.00714.64
5.4.40.0090.01214.64
5.4.30.0190.00314.64
5.4.20.0180.00314.64
5.4.10.0190.00314.64
5.4.00.0180.00414.64
5.3.290.0160.00614.64
5.3.280.0160.00614.64
5.3.270.0190.00314.64
5.3.260.0160.00514.64
5.3.250.0110.01114.64
5.3.240.0240.01014.64
5.3.230.0220.00714.64
5.3.220.0170.00014.64
5.3.210.0190.00314.64
5.3.200.0130.00814.64
5.3.190.0160.00314.64
5.3.180.0160.00514.64
5.3.170.0110.00714.64
5.3.160.0180.00514.64
5.3.150.0190.00314.64
5.3.140.0200.00314.64
5.3.130.0200.00014.64
5.3.120.0100.00714.64
5.3.110.0140.00814.64
5.3.100.0170.00414.64
5.3.90.0210.00014.64
5.3.80.0210.00014.64
5.3.70.0170.00414.64
5.3.60.0140.00714.64
5.3.50.0190.00014.64
5.3.40.0130.00514.64
5.3.30.0190.00314.64
5.3.20.0150.00614.64
5.3.10.0170.00414.64
5.3.00.0110.00714.64
5.2.170.0070.01114.64
5.2.160.0150.00314.64
5.2.150.0130.00514.64
5.2.140.0100.00714.64
5.2.130.0150.00314.64
5.2.120.0110.00714.64
5.2.110.0180.00014.64
5.2.100.0130.00514.64
5.2.90.0140.00314.64
5.2.80.0180.00014.64
5.2.70.0160.00514.64
5.2.60.0070.01114.64
5.2.50.0130.00414.64
5.2.40.0100.00714.64
5.2.30.0130.00514.64
5.2.20.0170.00014.64
5.2.10.0140.00314.64
5.2.00.0130.00414.64
5.1.60.0080.01214.64
5.1.50.0090.00414.64
5.1.40.0100.00714.64
5.1.30.0090.00614.64
5.1.20.0160.00014.64
5.1.10.0120.00414.64
5.1.00.0150.00014.64
5.0.50.0080.00614.64
5.0.40.0130.00014.64
5.0.30.0130.00014.64
5.0.20.0100.00314.64
5.0.10.0130.00014.64
5.0.00.0100.00314.64
4.4.90.0030.00014.64
4.4.80.0000.00814.64
4.4.70.0080.00014.64
4.4.60.0080.00014.64
4.4.50.0000.00814.64
4.4.40.0080.00014.64
4.4.30.0080.00014.64
4.4.20.0060.00214.64
4.4.10.0080.00014.64
4.4.00.0090.00014.64
4.3.110.0080.00014.64
4.3.100.0070.00014.64
4.3.90.0040.00414.64
4.3.80.0060.00214.64
4.3.70.0060.00214.64
4.3.60.0070.00014.64
4.3.50.0000.00814.64
4.3.40.0080.00014.64
4.3.30.0000.00614.64
4.3.20.0060.00014.64
4.3.10.0060.00014.64
4.3.00.0070.00014.64

preferences:
31.44 ms | 403 KiB | 5 Q