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 = array(); 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 = array(); foreach ($classes as $cn) { $parent = (string) get_parent_class($cn); if (isset($result[$parent])) { $result[$parent][] = $cn; } else { $result[$parent] = array($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.140.0100.01317.60
8.4.130.0210.00718.08
8.4.120.0250.00920.97
8.4.110.0290.00918.59
8.4.100.0310.00717.97
8.4.90.0310.00918.30
8.4.80.0280.00718.04
8.4.70.0290.00817.96
8.4.60.0340.00817.82
8.4.50.0310.00818.02
8.4.40.0340.00817.68
8.4.30.0320.00817.58
8.4.20.0310.00717.55
8.4.10.0280.00717.69
8.3.270.0090.01116.74
8.3.260.0250.00716.70
8.3.250.0220.00817.88
8.3.240.0240.00716.96
8.3.230.0230.00716.54
8.3.220.0230.00517.12
8.3.210.0240.00716.70
8.3.200.0240.00516.55
8.3.190.0250.00716.60
8.3.180.0220.00616.71
8.3.170.0260.00716.67
8.3.160.0270.00716.70
8.3.150.0260.00616.61
8.3.140.0240.00616.60
8.3.130.0220.00616.77
8.3.120.0230.00716.86
8.3.110.0270.00716.72
8.3.100.0300.00817.85
8.3.90.0280.00717.98
8.3.80.0300.00718.20
8.3.70.0280.00718.14
8.3.60.0300.00719.07
8.3.50.0290.00718.69
8.3.40.0300.00619.34
8.3.30.0250.00719.28
8.3.20.0240.00819.71
8.3.10.0240.00719.78
8.3.00.0190.00720.94
8.2.290.0270.00717.05
8.2.280.0260.00716.65
8.2.270.0240.00716.61
8.2.260.0260.00716.76
8.2.250.0260.00716.59
8.2.240.0240.00716.63
8.2.230.0250.00616.78
8.2.220.0240.00718.38
8.2.210.0240.00717.84
8.2.200.0240.00618.08
8.2.190.0240.00718.02
8.2.180.0230.00618.47
8.2.170.0250.00719.63
8.2.160.0250.00619.48
8.2.150.0240.00719.86
8.2.140.0250.00719.88
8.2.130.0250.00720.53
8.2.120.0270.00719.74
8.2.110.0230.00719.92
8.2.100.0240.00719.64
8.2.90.0260.00719.53
8.2.80.0260.00719.50
8.2.70.0240.00824.47
8.2.60.0240.00720.79
8.2.50.0230.00720.99
8.2.40.0250.00620.81
8.2.30.0240.00620.74
8.2.20.0230.00720.79
8.2.10.0230.00720.77
8.2.00.0230.00620.77
8.1.330.0230.00816.86
8.1.320.0220.00616.35
8.1.310.0230.00616.23
8.1.300.0250.00616.27
8.1.290.0240.00718.40
8.1.280.0250.00718.48
8.1.270.0260.00619.80
8.1.260.0250.00719.99
8.1.250.0270.00819.96
8.1.240.0220.00519.37
8.1.230.0200.00719.54
8.1.220.0220.00719.29
8.1.210.0240.00619.43
8.1.200.0240.00721.10
8.1.190.0230.00720.61
8.1.180.0230.00720.63
8.1.170.0220.00720.65
8.1.160.0210.00720.64
8.1.150.0220.00620.76
8.1.140.0210.00720.60
8.1.130.0220.00720.62
8.1.120.0210.00720.54
8.1.110.0210.00720.36
8.1.100.0210.00820.26
8.1.90.0190.00620.19
8.1.80.0190.00620.21
8.1.70.0170.00720.14
8.1.60.0190.00520.23
8.1.50.0180.00620.05
8.1.40.0190.00620.10
8.1.30.0180.00619.98
8.1.20.0190.00620.01
8.1.10.0190.00619.86
8.1.00.0190.00719.76
8.0.300.0220.00618.79
8.0.290.0210.00720.46
8.0.280.0190.00619.99
8.0.270.0200.00619.97
8.0.260.0210.00620.01
8.0.250.0190.00719.91
8.0.240.0210.00619.66
8.0.230.0200.00619.73
8.0.220.0190.00719.59
8.0.210.0210.00519.57
8.0.200.0190.00619.57
8.0.190.0170.00719.60
8.0.180.0180.00619.47
8.0.170.0190.00519.38
8.0.160.0170.00719.32
8.0.150.0180.00519.22
8.0.140.0180.00619.12
8.0.130.0180.00619.05
8.0.120.0190.00619.09
8.0.110.0180.00619.13
8.0.100.0180.00619.09
8.0.90.0180.00618.99
8.0.80.0180.00618.94
8.0.70.0170.00719.03
8.0.60.0180.00619.01
8.0.50.0180.00618.99
8.0.30.0170.00618.76
8.0.20.0170.00718.75
8.0.10.0180.00618.81
8.0.00.0150.00719.13
7.4.330.0200.00520.43
7.4.320.0180.00619.43
7.4.300.0180.00619.41
7.4.290.0180.00619.32
7.4.280.0180.00619.10
7.4.270.0180.00518.97
7.4.260.0180.00518.85
7.4.250.0170.00518.86
7.4.240.0190.00518.79
7.4.230.0180.00618.86
7.4.220.0170.00518.83
7.4.210.0160.00618.60
7.4.200.0160.00618.89
7.4.190.0160.00518.84
7.4.180.0170.00518.83
7.4.160.0170.00518.61
7.4.150.0160.00618.55
7.4.140.0150.00718.44
7.4.130.0160.00618.29
7.4.120.0150.00718.24
7.4.110.0160.00618.12
7.4.100.0160.00718.13
7.4.90.0160.00718.08
7.4.80.0150.00718.07
7.4.70.0150.00718.05
7.4.60.0160.00618.01
7.4.50.0150.00717.99
7.4.40.0160.00717.95
7.4.30.0140.00717.97
7.4.20.0140.00817.91
7.4.10.0140.00717.83
7.4.00.0130.00717.71
7.3.330.0180.00518.63
7.3.320.0170.00518.65
7.3.310.0170.00518.71
7.3.300.0170.00518.76
7.3.290.0180.00518.61
7.3.280.0170.00518.42
7.3.270.0170.00618.37
7.3.260.0160.00618.26
7.3.250.0160.00618.31
7.3.240.0170.00618.13
7.3.230.0160.00618.04
7.3.220.0170.00718.00
7.3.210.0170.00617.96
7.3.200.0170.00617.98
7.3.190.0160.00717.95
7.3.180.0160.00717.91
7.3.170.0160.00717.91
7.3.160.0170.00717.91
7.3.150.0160.00717.87
7.3.140.0160.00717.81
7.3.130.0170.00717.77
7.3.120.0150.00717.56
7.3.110.0150.00717.47
7.3.100.0140.00817.30
7.3.90.0140.00717.29
7.3.80.0140.00717.15
7.3.70.0140.00717.05
7.3.60.0130.00716.99
7.3.50.0140.00716.96
7.3.40.0140.00716.93
7.3.30.0120.00816.90
7.3.20.0170.00717.45
7.3.10.0160.00817.42
7.3.00.0170.00717.40
7.2.340.0180.00718.16
7.2.330.0170.00718.09
7.2.320.0170.00718.12
7.2.310.0160.00718.05
7.2.300.0170.00618.06
7.2.290.0170.00718.03
7.2.280.0170.00717.98
7.2.270.0170.00617.95
7.2.260.0160.00817.85
7.2.250.0170.00717.75
7.2.240.0150.00817.63
7.2.230.0150.00817.48
7.2.220.0140.00817.33
7.2.210.0140.00717.28
7.2.200.0140.00817.24
7.2.190.0140.00817.16
7.2.180.0140.00717.11
7.2.170.0140.00717.13
7.2.160.0130.00817.09
7.2.150.0180.00717.70
7.2.140.0170.00717.66
7.2.130.0180.00817.68
7.2.120.0200.00717.64
7.2.110.0180.00717.63
7.2.100.0200.00817.58
7.2.90.0230.00717.58
7.2.80.0230.00817.55
7.2.70.0240.00817.56
7.2.60.0230.00717.57
7.2.50.0230.00817.59
7.2.40.0220.00817.59
7.2.30.0210.00817.59
7.2.20.0220.00817.60
7.2.10.0230.00817.62
7.2.00.0230.00817.59
7.1.330.0190.00617.38
7.1.320.0170.00717.05
7.1.310.0170.00716.98
7.1.300.0180.00716.82
7.1.290.0170.00716.83
7.1.280.0160.00716.79
7.1.270.0170.00716.74
7.1.260.0170.00716.76
7.1.250.0190.00716.60
7.1.240.0200.00816.57
7.1.230.0190.00816.60
7.1.220.0240.00816.53
7.1.210.0250.00716.52
7.1.200.0230.00716.53
7.1.190.0240.00716.52
7.1.180.0230.00716.50
7.1.170.0250.00716.54
7.1.160.0230.00716.51
7.1.150.0250.00716.50
7.1.140.0240.00716.53
7.1.130.0240.00716.52
7.1.120.0240.00716.51
7.1.110.0230.00816.54
7.1.100.0230.00716.54
7.1.90.0230.00716.55
7.1.80.0230.00716.57
7.1.70.0240.00716.50
7.1.60.0220.00816.98
7.1.50.0230.00716.95
7.1.40.0220.00716.99
7.1.30.0210.00716.98
7.1.20.0210.00816.94
7.1.10.0200.00716.56
7.1.00.0220.00716.56
7.0.330.0220.00616.34
7.0.320.0190.00716.30
7.0.310.0240.00716.24
7.0.300.0230.00716.24
7.0.290.0230.00716.25
7.0.280.0220.00716.26
7.0.270.0250.00716.24
7.0.260.0250.00716.25
7.0.250.0240.00716.32
7.0.240.0240.00716.33
7.0.230.0220.00716.33
7.0.220.0230.00716.31
7.0.210.0210.00716.32
7.0.200.0220.00716.30
7.0.190.0230.00716.33
7.0.180.0220.00716.30
7.0.170.0210.00716.33
7.0.160.0200.00716.30
7.0.150.0200.00716.28
7.0.140.0210.00716.30
7.0.130.0200.00716.32
7.0.120.0200.00716.34
7.0.110.0220.00716.30
7.0.100.0200.00716.29
7.0.90.0210.00816.27
7.0.80.0200.00816.26
7.0.70.0210.00716.25
7.0.60.0200.00716.29
7.0.50.0210.00716.27
7.0.40.0200.00716.30
7.0.30.0190.00716.29
7.0.20.0220.00716.24
7.0.10.0200.00716.25
7.0.00.0210.00716.23
5.6.400.0150.00816.70
5.6.390.0160.00816.58
5.6.380.0160.00816.42
5.6.370.0160.00916.98
5.6.360.0160.00917.02
5.6.350.0170.00717.01
5.6.340.0160.00916.97
5.6.330.0170.00817.01
5.6.320.0160.00916.99
5.6.310.0160.00816.97
5.6.300.0160.00816.92
5.6.290.0160.00816.98
5.6.280.0160.00916.96
5.6.270.0150.00916.97
5.6.260.0160.00816.95
5.6.250.0150.00916.97
5.6.240.0160.00817.01
5.6.230.0160.00817.02
5.6.220.0150.00917.02
5.6.210.0160.00817.02
5.6.200.0160.00817.04
5.6.190.0160.00817.04
5.6.180.0170.00816.99
5.6.170.0160.00816.99
5.6.160.0150.00917.02
5.6.150.0160.00817.02
5.6.140.0150.00916.99
5.6.130.0150.00917.01
5.6.120.0150.00917.01
5.6.110.0150.00816.97
5.6.100.0150.00916.98
5.6.90.0150.00816.94
5.6.80.0140.00916.89
5.6.70.0150.00816.94
5.6.60.0150.00816.96
5.6.50.0150.00816.92
5.6.40.0150.00916.94
5.6.30.0150.00816.95
5.6.20.0150.00916.91
5.6.10.0150.00816.90
5.6.00.0150.00816.91
5.5.380.0250.00815.88
5.5.370.0280.00515.89
5.5.360.0240.00715.86
5.5.350.0290.00315.78
5.5.340.0230.00815.95
5.5.330.0240.00715.75
5.5.320.0250.00715.68
5.5.310.0230.00815.89
5.5.300.0250.00515.71
5.5.290.0240.00715.76
5.5.280.0240.01015.86
5.5.270.0210.01015.84
5.5.260.0210.00915.65
5.5.250.0220.00816.08
5.5.240.0220.00715.89
5.5.230.0240.00616.02
5.5.220.0250.00715.85
5.5.210.0260.00516.03
5.5.200.0220.01015.85
5.5.190.0240.00715.61
5.5.180.0260.00615.79
5.5.170.0220.00815.84
5.5.160.0240.00615.60
5.5.150.0230.00915.65
5.5.140.0240.00715.54
5.5.130.0200.01115.63
5.5.120.0210.00915.48
5.5.110.0250.00415.27
5.5.100.0230.00716.07
5.5.90.0120.00515.96
5.5.80.0120.00215.73
5.5.70.0080.00516.09
5.5.60.0100.00315.68
5.5.50.0230.01015.79
5.5.40.0290.00615.78
5.5.30.0220.01115.88
5.5.20.0280.00715.80
5.5.10.0210.00815.70
5.5.00.0230.00815.54
5.4.450.0190.00614.24
5.4.440.0170.00714.24
5.4.430.0180.00614.24
5.4.420.0220.00214.24
5.4.410.0180.00614.24
5.4.400.0210.00314.24
5.4.390.0230.00314.24
5.4.380.0180.00814.24
5.4.370.0160.00914.24
5.4.360.0170.00614.24
5.4.350.0180.00614.24
5.4.340.0200.00414.24
5.4.330.0190.00514.24
5.4.320.0220.00214.24
5.4.310.0170.00714.24
5.4.300.0180.00514.24
5.4.290.0210.00214.24
5.4.280.0200.00414.24
5.4.270.0190.00514.24
5.4.260.0150.00814.24
5.4.250.0190.00414.24
5.4.240.0220.00614.24
5.4.230.0180.00714.24
5.4.220.0180.00514.24
5.4.210.0300.00714.24
5.4.200.0150.00914.24
5.4.190.0200.00314.24
5.4.180.0180.00614.24
5.4.170.0170.00714.24
5.4.160.0220.00314.24
5.4.150.0200.00414.24
5.4.140.0170.00614.24
5.4.130.0200.00714.24
5.4.120.0180.00514.24
5.4.110.0210.00614.24
5.4.100.0180.00614.24
5.4.90.0170.00814.24
5.4.80.0240.00414.24
5.4.70.0280.00614.24
5.4.60.0190.00514.24
5.4.50.0180.00714.24
5.4.40.0200.00814.24
5.4.30.0220.00714.24
5.4.20.0170.00614.24
5.4.10.0200.00614.24
5.4.00.0170.00714.24
5.3.290.0190.00714.24
5.3.280.0210.00514.24
5.3.270.0170.00714.24
5.3.260.0180.00814.24
5.3.250.0160.00614.24
5.3.240.0170.00514.24
5.3.230.0190.00614.24
5.3.220.0230.00314.24
5.3.210.0230.00514.24
5.3.200.0180.00714.24
5.3.190.0220.00514.24
5.3.180.0180.00614.24
5.3.170.0210.00514.24
5.3.160.0200.00514.24
5.3.150.0160.00814.24
5.3.140.0170.00714.24
5.3.130.0190.00614.24
5.3.120.0170.00814.24
5.3.110.0190.00514.24
5.3.100.0200.00414.24
5.3.90.0180.00614.24
5.3.80.0170.00714.24
5.3.70.0200.00514.24
5.3.60.0220.00614.24
5.3.50.0120.01314.24
5.3.40.0180.00514.24
5.3.30.0230.00514.24
5.3.20.0220.00614.24
5.3.10.0190.00714.24
5.3.00.0160.00714.24
5.2.170.0130.00714.24
5.2.160.0190.00314.24
5.2.150.0120.00714.24
5.2.140.0110.00814.24
5.2.130.0140.00514.24
5.2.120.0120.00814.24
5.2.110.0140.00514.24
5.2.100.0130.00614.24
5.2.90.0160.00314.24
5.2.80.0150.00414.24
5.2.70.0120.00814.24
5.2.60.0140.00514.24
5.2.50.0150.00414.24
5.2.40.0160.00314.24
5.2.30.0160.00414.24
5.2.20.0120.00614.24
5.2.10.0150.00414.24
5.2.00.0160.00714.24
5.1.60.0120.00514.24
5.1.50.0160.00314.24
5.1.40.0100.00714.24
5.1.30.0120.00614.24
5.1.20.0130.00714.24
5.1.10.0130.00414.24
5.1.00.0120.00514.24
5.0.50.0090.00614.24
5.0.40.0110.00414.24
5.0.30.0110.00414.24
5.0.20.0070.00814.24
5.0.10.0100.00414.24
5.0.00.0070.00714.24
4.4.90.0080.00014.24
4.4.80.0060.00214.24
4.4.70.0080.00114.24
4.4.60.0090.00114.24
4.4.50.0060.00314.24
4.4.40.0050.00414.24
4.4.30.0090.00014.24
4.4.20.0050.00314.24
4.4.10.0070.00214.24
4.4.00.0080.00114.24
4.3.110.0060.00214.24
4.3.100.0070.00214.24
4.3.90.0050.00314.24
4.3.80.0060.00314.24
4.3.70.0070.00114.24
4.3.60.0070.00214.24
4.3.50.0050.00414.24
4.3.40.0060.00214.24
4.3.30.0050.00214.24
4.3.20.0030.00314.24
4.3.10.0040.00314.24
4.3.00.0060.00114.24

preferences:
36.11 ms | 403 KiB | 5 Q