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.5.30.0180.00718.37
8.5.20.0250.01017.59
8.5.10.0280.00817.59
8.5.00.0270.00917.87
8.4.180.0350.00919.71
8.4.170.0240.01320.42
8.4.160.0250.01020.94
8.4.150.0240.00717.75
8.4.140.0290.01017.68
8.4.130.0270.00817.88
8.4.120.0320.00919.30
8.4.110.0300.00918.36
8.4.100.0320.00817.93
8.4.90.0320.00918.18
8.4.80.0290.00817.98
8.4.70.0300.00917.93
8.4.60.0340.00817.81
8.4.50.0310.00818.00
8.4.40.0340.00817.68
8.4.30.0330.00817.58
8.4.20.0320.00717.56
8.4.10.0290.00717.68
8.3.300.0290.00918.34
8.3.290.0290.00919.16
8.3.280.0250.01118.34
8.3.270.0220.00816.80
8.3.260.0300.00816.69
8.3.250.0290.00817.30
8.3.240.0280.00716.91
8.3.230.0260.00816.57
8.3.220.0250.00617.04
8.3.210.0260.00716.69
8.3.200.0260.00616.57
8.3.190.0270.00716.60
8.3.180.0240.00616.71
8.3.170.0270.00716.67
8.3.160.0280.00716.70
8.3.150.0270.00616.61
8.3.140.0260.00616.62
8.3.130.0240.00616.75
8.3.120.0240.00716.85
8.3.110.0280.00716.72
8.3.100.0300.00817.75
8.3.90.0280.00717.87
8.3.80.0300.00718.08
8.3.70.0280.00718.03
8.3.60.0300.00718.90
8.3.50.0290.00718.54
8.3.40.0300.00619.25
8.3.30.0250.00719.17
8.3.20.0240.00819.59
8.3.10.0250.00719.65
8.3.00.0190.00720.75
8.2.300.0310.00918.24
8.2.290.0280.00716.96
8.2.280.0260.00816.66
8.2.270.0250.00716.62
8.2.260.0260.00716.75
8.2.250.0260.00716.60
8.2.240.0240.00716.64
8.2.230.0260.00616.76
8.2.220.0240.00718.24
8.2.210.0250.00717.73
8.2.200.0240.00617.96
8.2.190.0250.00717.90
8.2.180.0240.00618.32
8.2.170.0260.00719.51
8.2.160.0250.00619.37
8.2.150.0250.00719.73
8.2.140.0250.00719.74
8.2.130.0250.00720.36
8.2.120.0270.00819.62
8.2.110.0240.00719.79
8.2.100.0250.00719.55
8.2.90.0260.00719.44
8.2.80.0260.00719.40
8.2.70.0240.00824.11
8.2.60.0240.00720.64
8.2.50.0230.00720.83
8.2.40.0250.00720.66
8.2.30.0250.00620.59
8.2.20.0240.00720.63
8.2.10.0230.00720.63
8.2.00.0230.00620.62
8.1.340.0220.01118.93
8.1.330.0230.00916.79
8.1.320.0230.00716.37
8.1.310.0240.00616.25
8.1.300.0260.00616.29
8.1.290.0250.00718.25
8.1.280.0250.00718.33
8.1.270.0260.00719.67
8.1.260.0260.00719.83
8.1.250.0270.00819.80
8.1.240.0220.00619.27
8.1.230.0210.00719.43
8.1.220.0220.00719.20
8.1.210.0240.00619.33
8.1.200.0240.00720.90
8.1.190.0230.00720.45
8.1.180.0230.00720.47
8.1.170.0220.00720.50
8.1.160.0210.00720.48
8.1.150.0220.00620.60
8.1.140.0220.00720.44
8.1.130.0220.00720.48
8.1.120.0210.00720.41
8.1.110.0220.00720.23
8.1.100.0220.00820.14
8.1.90.0190.00620.07
8.1.80.0190.00620.10
8.1.70.0180.00720.03
8.1.60.0190.00520.13
8.1.50.0180.00619.96
8.1.40.0200.00620.01
8.1.30.0190.00619.89
8.1.20.0190.00619.93
8.1.10.0190.00619.78
8.1.00.0190.00719.68
8.0.300.0220.00618.67
8.0.290.0210.00720.26
8.0.280.0200.00619.84
8.0.270.0210.00619.81
8.0.260.0210.00619.86
8.0.250.0190.00719.77
8.0.240.0210.00619.53
8.0.230.0210.00619.61
8.0.220.0190.00719.46
8.0.210.0210.00519.45
8.0.200.0200.00619.47
8.0.190.0180.00719.48
8.0.180.0180.00619.37
8.0.170.0190.00519.29
8.0.160.0170.00619.23
8.0.150.0190.00519.13
8.0.140.0180.00619.03
8.0.130.0180.00618.97
8.0.120.0190.00619.01
8.0.110.0180.00619.05
8.0.100.0180.00619.00
8.0.90.0190.00618.91
8.0.80.0190.00618.86
8.0.70.0180.00718.96
8.0.60.0190.00618.93
8.0.50.0190.00618.90
8.0.30.0170.00618.71
8.0.20.0170.00718.70
8.0.10.0180.00618.76
8.0.00.0160.00719.07
7.4.330.0200.00520.27
7.4.320.0180.00619.30
7.4.300.0190.00619.29
7.4.290.0190.00619.21
7.4.280.0190.00619.00
7.4.270.0190.00518.89
7.4.260.0180.00618.77
7.4.250.0180.00518.77
7.4.240.0190.00518.71
7.4.230.0190.00618.78
7.4.220.0170.00518.76
7.4.210.0160.00618.54
7.4.200.0170.00618.81
7.4.190.0160.00518.77
7.4.180.0170.00618.75
7.4.160.0170.00618.55
7.4.150.0170.00618.50
7.4.140.0160.00718.38
7.4.130.0160.00618.24
7.4.120.0160.00718.19
7.4.110.0160.00718.08
7.4.100.0160.00718.09
7.4.90.0170.00718.04
7.4.80.0150.00718.03
7.4.70.0150.00718.02
7.4.60.0160.00617.98
7.4.50.0160.00717.96
7.4.40.0160.00717.92
7.4.30.0150.00717.94
7.4.20.0140.00817.88
7.4.10.0140.00717.80
7.4.00.0130.00717.68
7.3.330.0180.00518.56
7.3.320.0170.00618.57
7.3.310.0180.00518.63
7.3.300.0180.00618.68
7.3.290.0180.00518.54
7.3.280.0180.00518.36
7.3.270.0170.00618.31
7.3.260.0170.00618.21
7.3.250.0160.00618.25
7.3.240.0170.00618.08
7.3.230.0160.00618.00
7.3.220.0170.00717.97
7.3.210.0180.00617.93
7.3.200.0170.00717.95
7.3.190.0170.00717.92
7.3.180.0160.00717.88
7.3.170.0160.00717.88
7.3.160.0170.00717.87
7.3.150.0170.00717.84
7.3.140.0160.00717.78
7.3.130.0170.00717.74
7.3.120.0150.00717.54
7.3.110.0150.00717.46
7.3.100.0140.00817.28
7.3.90.0150.00717.27
7.3.80.0140.00717.14
7.3.70.0140.00717.05
7.3.60.0130.00716.99
7.3.50.0140.00716.96
7.3.40.0140.00716.92
7.3.30.0130.00816.89
7.3.20.0180.00717.45
7.3.10.0160.00817.42
7.3.00.0170.00717.41
7.2.340.0180.00718.12
7.2.330.0180.00718.05
7.2.320.0170.00718.08
7.2.310.0160.00718.01
7.2.300.0170.00618.02
7.2.290.0170.00717.99
7.2.280.0170.00717.94
7.2.270.0170.00617.92
7.2.260.0160.00817.82
7.2.250.0170.00717.73
7.2.240.0150.00817.61
7.2.230.0150.00817.46
7.2.220.0140.00817.32
7.2.210.0140.00717.27
7.2.200.0140.00817.24
7.2.190.0140.00817.15
7.2.180.0140.00717.11
7.2.170.0140.00717.12
7.2.160.0140.00817.08
7.2.150.0180.00717.70
7.2.140.0180.00717.66
7.2.130.0180.00817.70
7.2.120.0200.00717.66
7.2.110.0190.00717.64
7.2.100.0200.00817.59
7.2.90.0230.00717.60
7.2.80.0230.00817.57
7.2.70.0240.00817.57
7.2.60.0230.00817.58
7.2.50.0230.00817.60
7.2.40.0220.00817.60
7.2.30.0210.00817.60
7.2.20.0220.00817.61
7.2.10.0230.00817.64
7.2.00.0230.00817.61
7.1.330.0190.00617.38
7.1.320.0170.00717.06
7.1.310.0170.00716.99
7.1.300.0180.00716.83
7.1.290.0170.00716.84
7.1.280.0160.00816.80
7.1.270.0180.00716.75
7.1.260.0170.00716.77
7.1.250.0190.00716.61
7.1.240.0200.00816.58
7.1.230.0190.00816.61
7.1.220.0230.00816.54
7.1.210.0250.00716.54
7.1.200.0230.00716.54
7.1.190.0240.00716.53
7.1.180.0230.00716.52
7.1.170.0240.00716.55
7.1.160.0230.00716.52
7.1.150.0250.00716.51
7.1.140.0240.00716.54
7.1.130.0240.00716.53
7.1.120.0240.00716.52
7.1.110.0230.00716.55
7.1.100.0230.00716.55
7.1.90.0230.00716.56
7.1.80.0230.00716.58
7.1.70.0240.00716.52
7.1.60.0220.00816.98
7.1.50.0230.00716.96
7.1.40.0220.00716.99
7.1.30.0210.00716.98
7.1.20.0220.00816.95
7.1.10.0200.00716.57
7.1.00.0220.00716.58
7.0.330.0220.00616.35
7.0.320.0190.00716.31
7.0.310.0240.00716.25
7.0.300.0230.00716.26
7.0.290.0230.00716.26
7.0.280.0220.00716.27
7.0.270.0250.00716.25
7.0.260.0250.00716.26
7.0.250.0240.00716.33
7.0.240.0240.00716.34
7.0.230.0220.00716.34
7.0.220.0230.00716.32
7.0.210.0210.00716.33
7.0.200.0220.00716.31
7.0.190.0230.00716.34
7.0.180.0220.00716.32
7.0.170.0210.00716.34
7.0.160.0200.00716.31
7.0.150.0200.00716.30
7.0.140.0210.00716.31
7.0.130.0200.00716.33
7.0.120.0210.00716.35
7.0.110.0220.00716.31
7.0.100.0200.00716.30
7.0.90.0210.00816.28
7.0.80.0200.00716.27
7.0.70.0210.00716.26
7.0.60.0200.00716.31
7.0.50.0210.00716.28
7.0.40.0200.00716.31
7.0.30.0190.00716.30
7.0.20.0220.00716.25
7.0.10.0200.00716.26
7.0.00.0210.00716.25
5.6.400.0160.00816.70
5.6.390.0160.00816.57
5.6.380.0160.00816.42
5.6.370.0160.00916.97
5.6.360.0160.00917.00
5.6.350.0170.00717.00
5.6.340.0160.00916.96
5.6.330.0170.00817.00
5.6.320.0160.00916.98
5.6.310.0160.00816.96
5.6.300.0160.00816.92
5.6.290.0160.00816.97
5.6.280.0160.00916.96
5.6.270.0150.00916.96
5.6.260.0160.00816.94
5.6.250.0160.00916.96
5.6.240.0160.00817.00
5.6.230.0160.00817.00
5.6.220.0150.00917.01
5.6.210.0160.00817.02
5.6.200.0160.00817.03
5.6.190.0160.00817.03
5.6.180.0170.00816.98
5.6.170.0160.00816.98
5.6.160.0150.00917.02
5.6.150.0160.00817.01
5.6.140.0150.00916.98
5.6.130.0150.00917.00
5.6.120.0150.00917.00
5.6.110.0150.00816.96
5.6.100.0150.00916.97
5.6.90.0150.00816.93
5.6.80.0140.00916.88
5.6.70.0160.00816.93
5.6.60.0150.00816.95
5.6.50.0150.00816.91
5.6.40.0150.00916.93
5.6.30.0150.00816.94
5.6.20.0150.00916.90
5.6.10.0150.00816.89
5.6.00.0160.00816.91
5.5.380.0190.00616.76
5.5.370.0250.00616.76
5.5.360.0230.00316.76
5.5.350.0090.00516.76
5.5.340.0140.00016.76
5.5.330.0240.00516.76
5.5.320.0190.01116.76
5.5.310.0260.00516.76
5.5.300.0220.00816.76
5.5.290.0290.00216.76
5.5.280.0220.00816.76
5.5.270.0200.00916.76
5.5.260.0260.00516.76
5.5.250.0250.00516.76
5.5.240.0200.00916.76
5.5.230.0280.00416.76
5.5.220.0220.00816.76
5.5.210.0230.00616.76
5.5.200.0190.00916.76
5.5.190.0220.00716.76
5.5.180.0220.00816.76
5.5.170.0200.00916.76
5.5.160.0260.00316.76
5.5.150.0210.00716.76
5.5.140.0200.00916.76
5.5.130.0230.00616.76
5.5.120.0220.00716.76
5.5.110.0240.00916.76
5.5.100.0250.00416.76
5.5.90.0200.01016.76
5.5.80.0200.01116.76
5.5.70.0220.00816.76
5.5.60.0230.00616.76
5.5.50.0190.01016.76
5.5.40.0210.00816.76
5.5.30.0190.00916.76
5.5.20.0220.00816.76
5.5.10.0290.00616.76
5.5.00.0260.00516.76
5.4.450.0180.00516.76
5.4.440.0180.00616.76
5.4.430.0180.00516.76
5.4.420.0180.00516.76
5.4.410.0220.00316.76
5.4.400.0160.00716.76
5.4.390.0190.00716.76
5.4.380.0180.00516.76
5.4.370.0150.00816.76
5.4.360.0180.00616.76
5.4.350.0190.00516.76
5.4.340.0190.00416.76
5.4.330.0170.00616.76
5.4.320.0180.00516.76
5.4.310.0210.00416.76
5.4.300.0200.00516.76
5.4.290.0180.00516.76
5.4.280.0180.00516.76
5.4.270.0170.00616.76
5.4.260.0160.00716.76
5.4.250.0200.00416.76
5.4.240.0190.00416.76
5.4.230.0180.00616.76
5.4.220.0210.00416.76
5.4.210.0210.00416.76
5.4.200.0190.00516.76
5.4.190.0150.00816.76
5.4.180.0160.00716.76
5.4.170.0200.00416.76
5.4.160.0180.00616.76
5.4.150.0160.00716.76
5.4.140.0170.00616.76
5.4.130.0170.00616.76
5.4.120.0180.00516.76
5.4.110.0160.00816.76
5.4.100.0180.00516.76
5.4.90.0130.01016.76
5.4.80.0180.00516.76
5.4.70.0190.00516.76
5.4.60.0170.00616.76
5.4.50.0180.00616.76
5.4.40.0170.00616.76
5.4.30.0170.00616.76
5.4.20.0160.00616.76
5.4.10.0180.00416.76
5.4.00.0170.00616.76
5.3.290.0180.00516.76
5.3.280.0180.00716.76
5.3.270.0190.00516.76
5.3.260.0220.00416.76
5.3.250.0160.00916.76
5.3.240.0200.00416.76
5.3.230.0180.00616.76
5.3.220.0210.00516.76
5.3.210.0200.00416.76
5.3.200.0180.00516.76
5.3.190.0210.00316.76
5.3.180.0180.00716.76
5.3.170.0170.00716.76
5.3.160.0190.00516.76
5.3.150.0140.01016.76
5.3.140.0180.00616.76
5.3.130.0190.00416.76
5.3.120.0200.00416.76
5.3.110.0180.00516.76
5.3.100.0170.00716.76
5.3.90.0160.00716.76
5.3.80.0150.00716.76
5.3.70.0150.00816.76
5.3.60.0190.00416.76
5.3.50.0170.00616.76
5.3.40.0140.01016.76
5.3.30.0160.00716.76
5.3.20.0170.00616.76
5.3.10.0190.00716.76
5.3.00.0170.00816.76
5.2.170.0150.00516.76
5.2.160.0140.00416.76
5.2.150.0140.00516.76
5.2.140.0130.00716.76
5.2.130.0120.00616.76
5.2.120.0130.00616.76
5.2.110.0140.00516.76
5.2.100.0150.00516.76
5.2.90.0130.00616.76
5.2.80.0120.00716.76
5.2.70.0130.00616.76
5.2.60.0120.00716.76
5.2.50.0140.00616.76
5.2.40.0130.00616.76
5.2.30.0100.00916.76
5.2.20.0120.00616.76
5.2.10.0130.00516.76
5.2.00.0110.00616.76
5.1.60.0130.00416.76
5.1.50.0100.00716.76
5.1.40.0130.00416.76
5.1.30.0140.00416.76
5.1.20.0140.00316.76
5.1.10.0120.00516.76
5.1.00.0090.00816.76
5.0.50.0110.00416.76
5.0.40.0100.00416.76
5.0.30.0110.00316.76
5.0.20.0110.00416.76
5.0.10.0120.00316.76
5.0.00.0100.00416.76
4.4.90.0070.00316.76
4.4.80.0060.00316.76
4.4.70.0070.00216.76
4.4.60.0060.00316.76
4.4.50.0080.00116.76
4.4.40.0050.00516.76
4.4.30.0070.00216.76
4.4.20.0070.00316.76
4.4.10.0080.00216.76
4.4.00.0050.00416.76
4.3.110.0070.00216.76
4.3.100.0060.00316.76
4.3.90.0070.00216.76
4.3.80.0060.00316.76
4.3.70.0060.00416.76
4.3.60.0050.00416.76
4.3.50.0080.00216.76
4.3.40.0080.00116.76
4.3.30.0040.00316.76
4.3.20.0050.00316.76
4.3.10.0070.00116.76
4.3.00.0050.00416.76

preferences:
38.49 ms | 403 KiB | 5 Q