3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* * make sure the setA and setB are the same */ function isSame($setA, $setB) { if (!is_array($setA) && !is_array($setB)) { return $setA == $setB; } if (!is_array($setA) || !is_array($setB)) { return false; } $keys = array_intersect_key($setA, $setB); if ((count($keys) != count($setA)) || (count($keys) != count($setB))) { return false; } foreach ($keys as $key) { if (!isSame($setA[$key], $setB[$key])) { return false; } } return true; } /* * return true if setA has all capabilities in setB. Here the comparison is on actual capabilities, and nothing * fancy like number of capabilities or a weighted sum of capabilities. In other words, return true if setB is a * subset of setA. * * NOTE: This function does not validate if the inputs are really capability lists. * * @param array setA - master list to compare against * @param array setB - subset to be compared * * @return bool */ function hasAllCapabilities($setA, $setB) { if(!isset($setA)) $setA = array(); if(!is_array($setA)) $setA = array($setA); if(!isset($setB)) $setB = array(); if(!is_array($setB)) $setB = array($setB); foreach ($setB as $k=>$v) { if (array_key_exists($k, $setA)) { if (!isSame($setA[$k], $v)) { return false; } } else { return false; } } return true; } $a=array(101=>array(1,2,3)); $b=array(101=>array(1,2,3)); echo hasAllCapabilities($a, $b);

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.3.60.0170.00316.88
8.3.50.0090.00620.19
8.3.40.0070.00718.87
8.3.30.0100.00319.21
8.3.20.0000.00820.16
8.3.10.0040.00423.52
8.3.00.0080.00019.33
8.2.180.0160.00016.63
8.2.170.0140.00422.96
8.2.160.0120.00920.52
8.2.150.0040.00424.18
8.2.140.0060.00324.66
8.2.130.0080.00026.16
8.2.120.0000.00819.36
8.2.110.0100.00721.03
8.2.100.0040.00817.84
8.2.90.0030.00619.39
8.2.80.0000.00817.97
8.2.70.0030.00617.75
8.2.60.0040.00417.93
8.2.50.0080.00018.07
8.2.40.0000.00819.88
8.2.30.0080.00018.24
8.2.20.0040.00417.86
8.2.10.0030.00618.18
8.2.00.0050.00317.79
8.1.280.0180.00325.92
8.1.270.0000.00823.82
8.1.260.0080.00026.35
8.1.250.0040.01128.09
8.1.240.0110.00023.96
8.1.230.0080.00420.90
8.1.220.0040.00417.74
8.1.210.0060.00318.77
8.1.200.0040.00417.22
8.1.190.0060.00317.35
8.1.180.0040.00418.10
8.1.170.0040.00418.66
8.1.160.0000.00722.00
8.1.150.0000.00818.89
8.1.140.0050.00217.51
8.1.130.0040.00417.86
8.1.120.0000.00717.44
8.1.110.0030.00517.47
8.1.100.0000.00717.35
8.1.90.0050.00217.46
8.1.80.0000.00717.46
8.1.70.0000.00717.41
8.1.60.0060.00317.47
8.1.50.0040.00417.43
8.1.40.0040.00417.54
8.1.30.0000.00817.68
8.1.20.0030.00617.59
8.1.10.0000.00817.49
8.1.00.0040.00417.40
8.0.300.0040.00419.58
8.0.290.0000.00716.75
8.0.280.0070.00018.43
8.0.270.0040.00417.31
8.0.260.0000.00717.30
8.0.250.0070.00017.03
8.0.240.0000.00717.05
8.0.230.0000.00716.90
8.0.220.0070.00016.95
8.0.210.0000.00717.00
8.0.200.0030.00617.07
8.0.190.0000.00817.06
8.0.180.0030.00617.02
8.0.170.0000.00817.02
8.0.160.0030.00616.98
8.0.150.0000.00816.91
8.0.140.0000.00716.98
8.0.130.0060.00013.36
8.0.120.0040.00416.97
8.0.110.0000.00716.87
8.0.100.0000.00716.95
8.0.90.0050.00216.99
8.0.80.0090.00616.98
8.0.70.0000.00817.07
8.0.60.0000.00716.97
8.0.50.0040.00416.82
8.0.30.0150.01017.21
8.0.20.0080.01217.40
8.0.10.0080.00016.96
8.0.00.0100.00716.71
7.4.330.0000.00515.00
7.4.320.0060.00016.60
7.4.300.0030.00316.52
7.4.290.0000.00716.51
7.4.280.0030.00616.53
7.4.270.0000.00716.60
7.4.260.0040.00416.48
7.4.250.0030.00516.54
7.4.240.0040.00416.53
7.4.230.0030.00316.63
7.4.220.0120.00616.71
7.4.210.0060.00916.46
7.4.200.0040.00416.49
7.4.160.0060.00916.71
7.4.150.0170.00817.40
7.4.140.0120.00517.86
7.4.130.0110.00616.50
7.4.120.0080.01016.55
7.4.110.0110.00716.47
7.4.100.0100.00716.41
7.4.90.0070.01316.45
7.4.80.0080.01119.39
7.4.70.0040.01316.57
7.4.60.0000.01716.36
7.4.50.0000.00416.51
7.4.40.0100.00616.71
7.4.30.0190.00316.44
7.4.00.0110.00715.10
7.3.330.0070.00013.28
7.3.320.0030.00413.52
7.3.310.0050.00316.48
7.3.300.0000.00616.34
7.3.290.0070.00716.45
7.3.280.0070.00916.45
7.3.270.0120.01217.40
7.3.260.0130.00316.44
7.3.250.0090.00816.59
7.3.240.0080.01216.61
7.3.230.0090.00616.39
7.3.210.0000.01716.55
7.3.200.0130.00319.39
7.3.190.0090.00616.48
7.3.180.0040.01416.59
7.3.170.0110.00516.39
7.3.160.0130.00316.62
7.2.330.0090.00916.55
7.2.320.0070.01016.53
7.2.310.0110.00716.75
7.2.300.0100.01316.91
7.2.290.0060.01116.93
7.2.60.0040.01116.84
7.2.00.0050.00719.55
7.1.200.0000.01115.86
7.1.100.0080.00318.12
7.1.70.0000.00817.01
7.1.60.0120.01219.40
7.1.50.0070.01816.98
7.1.00.0100.07022.37
7.0.200.0030.00616.78
7.0.140.0070.07021.97
7.0.100.0070.04019.96
7.0.90.0100.03720.02
7.0.80.0000.05020.01
7.0.70.0070.04020.01
7.0.60.0070.04019.82
7.0.50.0170.08720.27
7.0.40.0070.04320.08
7.0.30.0070.04320.09
7.0.20.0100.05720.19
7.0.10.0070.04020.17
7.0.00.0030.04319.94
5.6.280.0100.06021.05
5.6.250.0100.04320.82
5.6.240.0000.04720.70
5.6.230.0070.04320.73
5.6.220.0030.04320.68
5.6.210.0070.03720.66
5.6.200.0070.08721.15
5.6.190.0000.04720.94
5.6.180.0000.05721.18
5.6.170.0070.04721.00
5.6.160.0030.04320.99
5.6.150.0100.03321.02
5.6.140.0030.04321.07
5.6.130.0070.04021.14
5.6.120.0170.03021.02
5.6.110.0030.05021.04
5.6.100.0030.04321.03
5.6.90.0000.04721.04
5.6.80.0030.04020.47
5.6.70.0030.04320.55
5.6.60.0030.04020.34
5.6.50.0000.05020.51
5.6.40.0030.04020.37
5.6.30.0030.10020.38
5.6.20.0070.08020.38
5.6.10.0100.04020.46
5.6.00.0070.06320.35
5.5.380.0070.03720.45
5.5.370.0030.03320.57
5.5.360.0000.03720.35
5.5.350.0130.02720.43
5.5.340.0130.07020.84
5.5.330.0130.04020.80
5.5.320.0030.03720.73
5.5.310.0030.04320.76
5.5.300.0070.03720.93
5.5.290.0070.04020.72
5.5.280.0100.03720.77
5.5.270.0100.03720.73
5.5.260.0070.04720.92
5.5.250.0000.05020.71
5.5.240.0100.03320.30
5.5.230.0070.05320.18
5.5.220.0100.03320.29
5.5.210.0130.03020.27
5.5.200.0100.03320.04
5.5.190.0130.07320.26
5.5.180.0030.08020.25
5.5.160.0130.07020.07
5.5.150.0000.08020.24
5.5.140.0070.06320.11
5.5.130.0100.04020.00
5.5.120.0030.04020.13
5.5.110.0070.04020.27
5.5.100.0030.04019.92
5.5.90.0000.05020.10
5.5.80.0070.04719.98
5.5.70.0000.07020.16
5.5.60.0100.07319.94
5.5.50.0030.07720.16
5.5.40.0030.06720.06
5.5.30.0170.03020.00
5.5.20.0100.07020.00
5.5.10.0170.05719.97
5.5.00.0070.07720.08
5.4.450.0030.04019.43
5.4.440.0070.03719.55
5.4.430.0030.04019.54
5.4.420.0100.03719.37
5.4.410.0030.04319.38
5.4.400.0000.04319.16
5.4.390.0070.04019.14
5.4.380.0030.03719.09
5.4.370.0030.04019.23
5.4.360.0070.03719.14
5.4.350.0100.07019.12
5.4.340.0130.07019.12
5.4.320.0030.04019.09
5.4.310.0070.07019.05
5.4.300.0100.03319.16
5.4.290.0100.07319.16
5.4.280.0030.04319.04
5.4.270.0030.03719.09
5.4.260.0070.04719.18
5.4.250.0070.05719.20
5.4.240.0070.03318.89
5.4.230.0030.06318.94
5.4.220.0070.04719.02
5.4.210.0100.06719.15
5.4.200.0100.07319.04
5.4.190.0100.05319.20
5.4.180.0100.06719.13
5.4.170.0130.03318.84
5.4.160.0130.04019.07
5.4.150.0030.04719.12
5.4.140.0070.03716.25
5.4.130.0130.06016.48
5.4.120.0070.03716.24
5.4.110.0100.06716.38
5.4.100.0070.03016.45
5.4.90.0130.06316.56
5.4.80.0100.02716.40
5.4.70.0070.05016.54
5.4.60.0070.03316.33
5.4.50.0100.07016.47
5.4.40.0070.06716.38
5.4.30.0070.03316.47
5.4.20.0070.06316.41
5.4.10.0070.07716.47
5.4.00.0070.06715.90
5.3.290.0000.04714.59
5.3.280.0030.05314.62
5.3.270.0030.07714.60
5.3.260.0100.04714.67
5.3.250.0130.05314.55
5.3.240.0130.03714.64
5.3.230.0070.06714.59
5.3.220.0000.04314.53
5.3.210.0100.04014.63
5.3.200.0030.07714.57
5.3.190.0130.07014.55
5.3.180.0070.06314.64
5.3.170.0100.05714.69
5.3.160.0070.04714.51
5.3.150.0070.05714.63
5.3.140.0030.06314.71
5.3.130.0030.04014.59
5.3.120.0170.04714.54
5.3.110.0070.08314.54
5.3.100.0070.03314.02
5.3.90.0130.05013.99
5.3.80.0030.05714.05
5.3.70.0030.04314.03
5.3.60.0170.03313.93
5.3.50.0070.06013.88
5.3.40.0100.07014.06
5.3.30.0070.06713.98
5.3.20.0070.05313.73
5.3.10.0000.04713.71
5.3.00.0130.03713.53
5.2.170.0070.04012.32
5.2.160.0030.03312.32
5.2.150.0030.03712.32
5.2.140.0100.06012.32
5.2.130.0100.04012.32
5.2.120.0000.05012.32
5.2.110.0070.04712.32
5.2.100.0100.05312.32
5.2.90.0000.06712.32
5.2.80.0100.03312.32
5.2.70.0030.06312.32
5.2.60.0000.05012.32
5.2.50.0030.03312.32
5.2.40.0070.06012.32
5.2.30.0030.05312.32
5.2.20.0030.03012.32
5.2.10.0130.04012.32
5.2.00.0070.05312.32
5.1.60.0070.04012.32
5.1.50.0030.05712.32
5.1.40.0170.01712.32
5.1.30.0130.05012.32
5.1.20.0100.02712.32
5.1.10.0070.05312.32
5.1.00.0130.04712.32
5.0.50.0000.03312.32
5.0.40.0070.01712.32
5.0.30.0030.06012.32
5.0.20.0030.04312.32
5.0.10.0000.04012.32
5.0.00.0070.06012.32
4.4.90.0000.02012.32
4.4.80.0000.03712.32
4.4.70.0030.03712.32
4.4.60.0070.01312.32
4.4.50.0030.02712.32
4.4.40.0000.03012.32
4.4.30.0000.01712.32
4.4.20.0000.02012.32
4.4.10.0000.03012.32
4.4.00.0000.04312.32
4.3.110.0030.03312.32
4.3.100.0030.01312.32
4.3.90.0030.03012.32
4.3.80.0030.03312.32
4.3.70.0000.03012.32
4.3.60.0000.02712.32
4.3.50.0000.03712.32
4.3.40.0030.04712.32
4.3.30.0030.02312.32
4.3.20.0000.03312.32
4.3.10.0070.03012.32
4.3.00.0030.02312.32

preferences:
77.44 ms | 400 KiB | 5 Q