3v4l.org

run code in 300+ PHP versions simultaneously
<?php // array of characters depending on other characters $characters = array( 'a' => array('c'), 'b' => array('c', 'a'), 'd' => array('c', 'a'), 'c' => array(), 'l' => array('c'), 'f' => array('l'), 't' => array('a'), 'w' => array('c', 'a'), ); function sortCharacters($characters) { uksort ($characters, function ($a, $b) use ($characters) { if (empty($characters[$a]) && empty($characters[$b])) { // equal (no dependencies) return 0; } if (empty($characters[$a]) && !empty($characters[$b])) { // a has no dependencies so is lower return -1; } if (!empty($characters[$a]) && empty($characters[$b])) { // b has no dependencies so a is higher return 1; } if (in_array($a, $characters[$b])) { // b depends on a so a is lower return -1; } if (in_array($b, $characters[$a])) { // a depends on b so a is higher return 1; } return 0; }); return $characters; } $characters = sortCharacters($characters); print_r($characters);

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.00820.57
8.4.110.0130.00822.70
8.4.100.0150.00419.69
8.4.90.0140.00718.61
8.4.80.0100.01018.05
8.4.70.0110.01018.03
8.4.60.0110.01118.91
8.4.50.0060.00818.70
8.4.40.0130.00717.80
8.4.30.0130.00617.70
8.4.20.0100.01019.77
8.4.10.0030.00619.60
8.3.250.0100.01018.93
8.3.240.0110.00917.37
8.3.230.0130.00616.86
8.3.220.0060.00219.09
8.3.210.0070.00716.62
8.3.200.0040.00516.60
8.3.190.0050.00418.87
8.3.180.0100.00719.04
8.3.170.0110.00319.09
8.3.160.0040.00416.56
8.3.150.0070.01116.66
8.3.140.0120.00616.78
8.3.130.0150.00316.75
8.3.120.0060.00318.88
8.3.110.0060.00320.94
8.3.100.0000.00916.65
8.3.90.0040.01126.77
8.3.80.0060.00317.97
8.3.70.0160.00618.56
8.3.60.0110.00716.75
8.3.50.0280.00818.20
8.3.40.0070.00718.80
8.3.30.0040.01118.50
8.3.20.0000.00720.21
8.3.10.0040.00423.70
8.3.00.0040.00423.56
8.2.290.0090.00720.61
8.2.280.0100.00518.69
8.2.270.0040.01516.75
8.2.260.0070.01017.11
8.2.250.0040.00417.23
8.2.240.0080.00017.05
8.2.230.0050.00522.58
8.2.220.0060.00324.06
8.2.210.0140.00026.77
8.2.200.0060.00316.63
8.2.190.0180.00316.63
8.2.180.0070.01416.38
8.2.170.0110.00422.96
8.2.160.0080.01220.22
8.2.150.0080.00024.18
8.2.140.0040.00424.66
8.2.130.0070.00022.20
8.2.120.0070.00026.35
8.2.110.0090.00022.08
8.2.100.0110.00017.91
8.2.90.0080.00019.22
8.2.80.0050.00318.16
8.2.70.0080.00017.75
8.2.60.0030.00618.05
8.2.50.0080.00018.10
8.2.40.0040.00420.60
8.2.30.0040.00421.10
8.2.20.0040.00418.06
8.2.10.0000.00818.20
8.2.00.0000.00718.17
8.1.330.0080.01022.22
8.1.320.0110.00922.06
8.1.310.0000.01818.22
8.1.300.0030.00617.91
8.1.290.0090.00030.84
8.1.280.0070.01025.92
8.1.270.0080.00021.95
8.1.260.0080.00026.35
8.1.250.0070.00728.09
8.1.240.0120.00022.13
8.1.230.0060.00623.75
8.1.220.0040.00417.74
8.1.210.0030.00618.77
8.1.200.0000.00917.36
8.1.190.0000.00817.22
8.1.180.0000.00818.10
8.1.170.0080.00018.64
8.1.160.0000.00719.00
8.1.150.0000.00718.82
8.1.140.0030.00517.57
8.1.130.0030.00318.96
8.1.120.0040.00417.38
8.1.110.0000.00817.46
8.1.100.0050.00417.51
8.1.90.0070.00017.47
8.1.80.0000.00817.48
8.1.70.0030.00317.51
8.1.60.0000.00817.52
8.1.50.0080.00017.51
8.1.40.0070.00017.55
8.1.30.0040.00417.57
8.1.20.0070.00017.63
8.1.10.0060.00317.48
8.1.00.0060.00317.51
8.0.300.0040.00419.77
8.0.290.0040.00416.72
8.0.280.0070.00018.33
8.0.270.0030.00317.27
8.0.260.0030.00320.80
8.0.250.0030.00317.01
8.0.240.0050.00316.93
8.0.230.0060.00317.05
8.0.220.0030.00416.96
8.0.210.0070.00017.01
8.0.200.0040.00417.03
8.0.190.0030.00616.98
8.0.180.0000.00816.86
8.0.170.0040.00417.00
8.0.160.0070.00017.01
8.0.150.0030.00316.98
8.0.140.0030.00516.90
8.0.130.0000.00613.42
8.0.120.0040.00416.83
8.0.110.0030.00316.81
8.0.100.0030.00516.88
8.0.90.0000.00916.97
8.0.80.0000.01516.90
8.0.70.0070.00016.94
8.0.60.0050.00216.76
8.0.50.0070.00016.97
8.0.30.0090.01116.92
8.0.20.0110.00817.40
8.0.10.0000.00817.04
8.0.00.0140.00316.92
7.4.330.0000.00616.73
7.4.320.0040.00416.62
7.4.300.0030.00316.56
7.4.290.0030.00316.66
7.4.280.0050.00416.43
7.4.270.0040.00416.54
7.4.260.0030.00316.50
7.4.250.0030.00516.59
7.4.240.0000.00716.49
7.4.230.0020.00516.64
7.4.220.0070.01016.57
7.4.210.0040.01216.55
7.4.200.0070.00016.64
7.4.160.0090.00716.58
7.4.150.0190.00017.40
7.4.140.0140.00717.86
7.4.130.0120.00916.45
7.4.120.0080.01016.51
7.4.110.0060.01316.54
7.4.100.0070.01616.61
7.4.90.0130.00716.65
7.4.80.0080.00819.39
7.4.70.0070.01016.74
7.4.60.0060.01216.46
7.4.50.0070.01016.23
7.4.40.0080.01416.33
7.4.30.0060.01016.52
7.4.00.0070.00715.15
7.3.330.0000.00513.18
7.3.320.0000.00513.35
7.3.310.0040.00416.31
7.3.300.0030.00516.23
7.3.290.0080.00716.32
7.3.280.0080.00816.32
7.3.270.0100.00717.40
7.3.260.0020.01516.34
7.3.250.0100.00716.47
7.3.240.0070.01116.49
7.3.230.0110.00616.43
7.3.210.0070.01016.44
7.3.200.0090.00816.53
7.3.190.0070.01016.45
7.3.180.0080.00816.36
7.3.170.0030.01316.52
7.3.160.0040.01116.41
7.3.10.0060.01216.68
7.3.00.0040.00716.41
7.2.330.0170.00316.80
7.2.320.0060.01016.60
7.2.310.0100.00916.70
7.2.300.0070.01616.89
7.2.290.0040.01316.86
7.2.130.0060.01016.68
7.2.120.0040.01516.82
7.2.110.0030.01416.78
7.2.100.0070.01016.76
7.2.90.0040.01217.02
7.2.80.0000.01817.01
7.2.70.0100.00317.06
7.2.60.0070.00617.07
7.2.50.0080.00816.89
7.2.40.0030.00717.13
7.2.30.0000.01017.04
7.2.20.0070.00716.97
7.2.10.0130.00316.85
7.2.00.0040.00816.99
7.1.250.0040.01115.83
7.1.200.0000.01615.76
7.1.110.0110.00917.54
7.1.100.0090.01117.44
7.1.90.0100.01117.49
7.1.80.0090.01117.62
7.1.70.0080.01016.49
7.1.60.0240.00934.43
7.1.50.0230.01534.18
7.1.40.0280.01233.75
7.1.30.0260.01033.81
7.1.20.0230.02033.91
7.1.10.0130.00715.92
7.1.00.0130.00816.17
7.0.250.0150.01117.15
7.0.240.0120.01117.23
7.0.230.0130.00717.03
7.0.220.0120.00917.15
7.0.210.0090.01015.94
7.0.200.0100.01016.10
7.0.190.0100.01116.12
7.0.180.0120.01015.62
7.0.170.0120.01515.61
7.0.160.0120.00915.60
7.0.150.0180.00615.59
7.0.140.0120.01015.74
7.0.130.0090.00915.76
7.0.120.0110.00715.81
7.0.110.0080.01115.71
7.0.100.0070.01215.73
7.0.90.0070.01415.56
7.0.80.0140.00815.77
7.0.70.0130.00715.57
7.0.60.0080.01115.33
7.0.50.0100.01115.76
7.0.40.0110.01015.71
7.0.30.0110.01115.67
7.0.20.0160.00915.66
7.0.10.0130.00715.71
7.0.00.0100.00915.82
5.6.300.0140.06820.64
5.6.290.0140.06720.70
5.6.280.0140.05420.78
5.6.270.0100.06520.89
5.6.260.0150.05420.92
5.6.250.0130.06020.82
5.6.240.0120.07620.81
5.6.230.0140.07920.76
5.6.220.0130.05620.74
5.6.210.0100.06620.81
5.6.200.0160.05720.74
5.6.190.0100.07320.78
5.6.180.0130.06720.82
5.6.170.0140.05420.84
5.6.160.0130.05820.87
5.6.150.0130.06820.73
5.6.140.0040.06520.77
5.6.130.0150.05020.88
5.6.120.0140.05620.75
5.6.110.0090.06120.84
5.6.100.0190.06020.82
5.6.90.0180.05820.69
5.6.80.0170.05720.17
5.6.70.0110.06220.19
5.6.60.0120.06220.23
5.6.50.0100.07020.15
5.6.40.0170.06020.14
5.6.30.0170.05820.16
5.6.20.0110.07420.20
5.6.10.0120.06920.11
5.6.00.0190.05720.12
5.5.380.0170.07717.40
5.5.370.0190.06017.61
5.5.360.0210.04617.40
5.5.350.0160.06117.64
5.5.340.0160.05518.12
5.5.330.0110.05618.03
5.5.320.0250.04417.96
5.5.310.0170.05118.03
5.5.300.0070.06218.03
5.5.290.0100.05817.98
5.5.280.0130.05318.00
5.5.270.0070.08718.02
5.5.260.0170.05217.79
5.5.250.0100.07017.59
5.5.240.0100.07517.50
5.5.230.0160.07117.34
5.5.220.0130.05217.41
5.5.210.0160.04817.38
5.5.200.0060.05817.47
5.5.190.0070.05917.31
5.5.180.0070.08217.38
5.5.160.0100.06317.38
5.5.150.0120.05417.38
5.5.140.0120.05017.46
5.5.130.0110.05317.46
5.5.120.0130.06317.12
5.5.110.0130.05517.38
5.5.100.0140.05117.29
5.5.90.0100.07017.28
5.5.80.0000.06217.29
5.5.70.0030.06317.18
5.5.60.0130.07117.18
5.5.50.0160.04617.03
5.5.40.0070.05517.26
5.5.30.0130.07017.27
5.5.20.0160.07217.29
5.5.10.0210.07017.04
5.5.00.0130.07817.27
5.4.450.0150.05719.57
5.4.440.0100.06519.34
5.4.430.0070.08419.24
5.4.420.0160.05219.43
5.4.410.0240.04419.14
5.4.400.0170.06319.01
5.4.390.0100.05818.95
5.4.380.0030.05819.10
5.4.370.0120.04918.99
5.4.360.0170.05019.11
5.4.350.0160.05019.07
5.4.340.0230.04019.07
5.4.320.0100.05319.10
5.4.310.0160.05019.08
5.4.300.0130.05019.05
5.4.290.0070.05518.91
5.4.280.0200.04718.93
5.4.270.0170.04719.01
5.4.260.0130.07318.83
5.4.250.0100.05319.02
5.4.240.0030.08418.85
5.4.230.0070.07818.94
5.4.220.0210.04919.02
5.4.210.0070.05919.00
5.4.200.0120.05219.00
5.4.190.0130.07419.13
5.4.180.0130.07619.13
5.4.170.0130.06919.04
5.4.160.0180.07218.96
5.4.150.0170.05718.96
5.4.140.0100.05216.50
5.4.130.0110.05116.59
5.4.120.0150.04616.57
5.4.110.0040.05916.48
5.4.100.0100.06216.73
5.4.90.0260.06316.70
5.4.80.0100.04816.68
5.4.70.0170.06816.45
5.4.60.0070.05316.62
5.4.50.0110.07416.39
5.4.40.0050.05616.43
5.4.30.0070.06716.63
5.4.20.0130.06616.62
5.4.10.0130.04916.38
5.4.00.0100.06615.93
5.3.290.0000.06314.86
5.3.280.0130.05214.88
5.3.270.0200.07114.90
5.3.260.0130.07014.90
5.3.250.0170.04414.49
5.3.240.0130.05114.79
5.3.230.0130.05714.66
5.3.220.0230.04214.84
5.3.210.0100.06814.83
5.3.200.0200.06714.77
5.3.190.0060.05714.85
5.3.180.0060.05914.75
5.3.170.0130.06114.86
5.3.160.0100.07814.45
5.3.150.0070.08114.63
5.3.140.0190.05814.84
5.3.130.0160.07414.75
5.3.120.0130.07214.73
5.3.110.0160.05214.82
5.3.100.0170.06514.30
5.3.90.0170.06514.32
5.3.80.0070.06114.02
5.3.70.0030.05714.14
5.3.60.0060.07014.04
5.3.50.0130.06613.91
5.3.40.0090.05514.01
5.3.30.0160.04614.12
5.3.20.0100.04813.59
5.3.10.0100.07113.98
5.3.00.0060.05213.95
5.2.170.0060.04511.44
5.2.160.0130.03511.36
5.2.150.0070.04411.38
5.2.140.0110.03911.27
5.2.130.0150.03211.11
5.2.120.0100.05611.29
5.2.110.0030.04211.28
5.2.100.0030.04311.39
5.2.90.0130.03511.31
5.2.80.0030.04611.15
5.2.70.0000.06811.35
5.2.60.0110.05011.25
5.2.50.0090.05811.24
5.2.40.0030.05511.26
5.2.30.0040.06410.96
5.2.20.0160.04710.95
5.2.10.0070.03810.86
5.2.00.0070.05310.92
5.1.60.0100.03010.00
5.1.50.0120.02910.27
5.1.40.0120.03210.03
5.1.30.0070.04710.66
5.1.20.0090.04910.63
5.1.10.0000.05410.30
5.1.00.0030.04010.36
5.0.50.0030.0318.80
5.0.40.0130.0238.79
5.0.30.0130.0488.79
5.0.20.0110.0328.79
5.0.10.0070.0378.79
5.0.00.0190.0418.79
4.4.90.0060.0218.79
4.4.80.0130.0208.79
4.4.70.0090.0168.79
4.4.60.0100.0168.79
4.4.50.0000.0338.79
4.4.40.0110.0268.79
4.4.30.0060.0248.79
4.4.20.0060.0288.79
4.4.10.0030.0228.79
4.4.00.0030.0388.79
4.3.110.0030.0318.79
4.3.100.0000.0338.79
4.3.90.0000.0338.79
4.3.80.0060.0418.79
4.3.70.0030.0288.79
4.3.60.0090.0258.79
4.3.50.0030.0238.79
4.3.40.0040.0328.79
4.3.30.0100.0148.79
4.3.20.0070.0188.79
4.3.10.0000.0248.79
4.3.00.0030.0278.79

preferences:
29.99 ms | 403 KiB | 5 Q