3v4l.org

run code in 300+ PHP versions simultaneously
<?php class App_Collection implements ArrayAccess, IteratorAggregate, Countable { public $data = array(); public function count() { return count($this->data); } public function offsetExists($offset) { return (isset($this->data[$offset])); } public function offsetGet($offset) { if ($this->offsetExists($offset)) { return $this->data[$offset]; } return false; } public function offsetSet($offset, $value) { if ($offset) { $this->data[$offset] = $value; } else { $this->data[] = $value; } } public function offsetUnset($offset) { unset($this->data[$offset]); } public function getIterator() { return new ArrayIterator($this->data); } } echo "ArrayAccess:\n"; $collection = new App_Collection(); $collection['foo'] = 'bar'; var_dump(array_key_exists('foo', $collection)); echo "ArrayObject:\n"; $collection = new ArrayObject(); $collection['foo'] = 'bar'; var_dump(array_key_exists('foo', $collection));

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.130.0140.00419.70
8.4.120.0100.00922.45
8.4.110.0100.01022.38
8.4.100.0100.00918.11
8.4.90.0140.00818.59
8.4.80.0130.00717.92
8.4.70.0070.00218.00
8.4.60.0120.01018.87
8.4.50.0120.00818.12
8.4.40.0110.01018.02
8.4.30.0060.01317.83
8.4.20.0120.00918.62
8.4.10.0060.00317.78
8.3.260.0140.00516.80
8.3.250.0090.01019.26
8.3.240.0100.01016.82
8.3.230.0090.00816.67
8.3.220.0120.00717.11
8.3.210.0050.00716.94
8.3.200.0050.00416.86
8.3.190.0100.00918.73
8.3.180.0140.00517.00
8.3.170.0050.01316.86
8.3.160.0100.00716.98
8.3.150.0070.00017.09
8.3.140.0090.00017.35
8.3.130.0060.00318.64
8.3.120.0050.00318.96
8.3.110.0110.00418.58
8.3.100.0070.00316.73
8.3.90.0050.00326.77
8.3.80.0030.00617.97
8.3.70.0110.00718.55
8.3.60.0110.00418.56
8.3.50.0100.00718.08
8.3.40.0070.01018.86
8.3.30.0060.00918.96
8.3.20.0040.00419.29
8.3.10.0080.00023.48
8.3.00.0060.00322.59
8.2.290.0080.01020.28
8.2.280.0060.00318.72
8.2.270.0130.00618.64
8.2.260.0150.00416.80
8.2.250.0000.00816.82
8.2.240.0080.00017.25
8.2.230.0090.00020.94
8.2.220.0100.01024.06
8.2.210.0080.00026.77
8.2.200.0090.00016.50
8.2.190.0130.00916.58
8.2.180.0120.00318.23
8.2.170.0120.00322.96
8.2.160.0120.00620.98
8.2.150.0030.00524.18
8.2.140.0040.00424.66
8.2.130.0030.00526.16
8.2.120.0040.00419.95
8.2.110.0060.00320.82
8.2.100.0120.00018.03
8.2.90.0040.00418.28
8.2.80.0040.00417.97
8.2.70.0030.00618.02
8.2.60.0050.00218.16
8.2.50.0060.00318.10
8.2.40.0030.00521.29
8.2.30.0020.00520.66
8.2.20.0040.00418.01
8.2.10.0050.00318.25
8.2.00.0030.00319.50
8.1.330.0170.00222.04
8.1.320.0140.00616.39
8.1.310.0000.01118.45
8.1.300.0180.00018.02
8.1.290.0030.00630.84
8.1.280.0070.00725.92
8.1.270.0000.00821.94
8.1.260.0080.00026.35
8.1.250.0040.00428.09
8.1.240.0100.00020.68
8.1.230.0040.00820.99
8.1.220.0030.00617.77
8.1.210.0040.00418.77
8.1.200.0030.00717.35
8.1.190.0040.00417.23
8.1.180.0080.00018.10
8.1.170.0040.00418.89
8.1.160.0060.00318.80
8.1.150.0020.00518.82
8.1.140.0080.00019.08
8.1.130.0030.00318.95
8.1.120.0000.00817.48
8.1.110.0030.00617.45
8.1.100.0040.00417.36
8.1.90.0040.00417.36
8.1.80.0000.00717.36
8.1.70.0000.00817.38
8.1.60.0000.00817.62
8.1.50.0040.00417.50
8.1.40.0050.00317.41
8.1.30.0000.00917.52
8.1.20.0000.00917.55
8.1.10.0000.00717.55
8.1.00.0040.00417.56
8.0.300.0040.00419.94
8.0.290.0060.00316.75
8.0.280.0000.00718.46
8.0.270.0070.00017.27
8.0.260.0070.00017.18
8.0.250.0040.00417.01
8.0.240.0090.00017.05
8.0.230.0070.00017.04
8.0.220.0110.00017.00
8.0.210.0030.00716.89
8.0.200.0060.00316.98
8.0.190.0040.00416.91
8.0.180.0030.00516.90
8.0.170.0040.00416.87
8.0.160.0070.00017.00
8.0.150.0000.00717.02
8.0.140.0000.00716.97
8.0.130.0000.00813.34
8.0.120.0040.00416.91
8.0.110.0080.00016.84
8.0.100.0040.00416.91
8.0.90.0000.00716.91
8.0.80.0090.00916.96
8.0.70.0000.00716.91
8.0.60.0040.00416.87
8.0.50.0030.00616.87
8.0.30.0130.00517.01
8.0.20.0090.00917.40
8.0.10.0050.00217.08
8.0.00.0100.00916.92
7.4.330.0060.00015.55
7.4.320.0040.00416.53
7.4.300.0000.00616.52
7.4.290.0040.00416.41
7.4.280.0000.00916.52
7.4.270.0000.00716.50
7.4.260.0070.00016.60
7.4.250.0070.00016.45
7.4.240.0050.00316.50
7.4.230.0070.00016.63
7.4.220.0080.00016.40
7.4.210.0090.00716.63
7.4.200.0030.00316.41
7.4.160.0090.01016.57
7.4.140.0100.00817.86
7.4.130.0100.01016.72
7.4.120.0100.00916.49
7.4.110.0130.00516.65
7.4.100.0100.00716.56
7.4.90.0170.00716.56
7.4.80.0090.00919.39
7.4.70.0030.01516.62
7.4.60.0040.01216.47
7.4.50.0090.00616.29
7.4.40.0160.01016.44
7.4.00.0060.00915.25
7.3.330.0020.00213.32
7.3.320.0030.00313.24
7.3.310.0040.00416.36
7.3.300.0030.00316.31
7.3.290.0030.00316.25
7.3.280.0110.00716.30
7.3.260.0090.00816.42
7.3.240.0090.01116.44
7.3.230.0060.01016.57
7.3.210.0090.00916.49
7.3.200.0100.00716.32
7.3.190.0060.00916.70
7.3.180.0130.00316.52
7.3.170.0100.00716.39
7.3.160.0090.00616.33
7.2.330.0060.01316.58
7.2.320.0140.00716.53
7.2.310.0140.00316.54
7.2.300.0030.01316.41
7.2.290.0030.01316.66
7.2.90.0520.00514.74
7.2.80.0490.00714.59
7.2.70.0330.00815.08
7.2.60.0380.00315.09
7.2.50.0370.00614.87
7.2.40.0390.00515.04
7.2.30.0820.00514.85
7.2.20.0360.00814.94
7.2.10.0520.00614.81
7.2.00.0610.00815.15
7.1.210.0350.00513.91
7.1.200.0340.00614.03
7.1.190.0330.00713.94
7.1.180.0320.00513.72
7.1.170.0360.00613.84
7.1.160.0370.00813.90
7.1.150.0410.00513.88
7.1.140.0500.00613.73
7.1.130.0520.00513.97
7.1.120.0570.01013.90
7.1.110.0360.00613.96
7.1.100.0590.00213.83
7.1.90.0350.00814.06
7.1.80.0330.01013.89
7.1.70.0340.00513.88
7.1.60.0870.01131.98
7.1.50.0520.00531.98
7.1.40.0530.00831.88
7.1.30.0630.00831.88
7.1.20.0620.00731.88
7.1.10.0340.00713.73
7.1.00.0390.00714.03
7.0.310.0310.00613.45
7.0.300.0340.00813.60
7.0.290.0550.01013.56
7.0.280.0490.00713.55
7.0.270.0930.00713.73
7.0.260.0930.00713.59
7.0.250.0430.00713.70
7.0.240.0980.01013.79
7.0.230.0510.00313.50
7.0.220.0600.00613.64
7.0.210.0290.01413.40
7.0.200.0840.00413.55
7.0.190.0350.01513.54
7.0.180.0360.00413.54
7.0.170.0670.00413.58
7.0.160.0370.00713.57
7.0.150.0780.00713.34
7.0.140.0630.00713.65
7.0.130.0400.00713.74
7.0.120.0360.01213.54
7.0.110.0500.01113.34
7.0.100.0330.01813.63
7.0.90.0610.00713.55
7.0.80.0320.01113.73
7.0.70.0420.00413.52
7.0.60.0560.00713.69
7.0.50.0520.00013.56
7.0.40.0510.01313.78
7.0.30.0440.00413.61
7.0.20.0540.00013.74
7.0.10.0430.00913.57
7.0.00.0440.00013.45
5.6.400.0070.00316.27
5.6.300.0050.00714.27
5.6.290.0150.00314.32
5.6.280.0150.00714.61
5.6.270.0130.00614.36
5.6.260.0120.00914.35
5.6.250.0150.00614.41
5.6.240.0170.00014.29
5.6.230.0160.00614.28
5.6.220.0070.01714.26
5.6.210.0170.00614.32
5.6.200.0200.00414.34
5.6.190.0250.00014.53
5.6.180.0190.00314.20
5.6.170.0150.01014.48
5.6.160.0170.00914.12
5.6.150.0160.00314.50
5.6.140.0190.00314.54
5.6.130.0120.00814.32
5.6.120.0070.01014.38
5.6.110.0180.00314.48
5.6.100.0190.00314.45
5.6.90.0160.00514.30
5.6.80.0170.00614.40
5.6.70.0100.01414.09
5.6.60.0050.01114.43
5.6.50.0110.01114.33
5.6.40.0150.00514.26
5.6.30.0120.00814.36
5.6.20.0160.00314.32
5.6.10.0130.00714.34
5.6.00.0160.00414.31
5.5.380.0170.00011.23
5.5.370.0150.00411.26
5.5.360.0130.00711.47
5.5.350.0060.00911.46
5.5.340.0090.00611.30
5.5.330.0070.01111.18
5.5.320.0140.00311.45
5.5.310.0100.00811.11
5.5.300.0060.01111.38
5.5.290.0130.00010.99
5.5.280.0120.00611.03
5.5.270.0140.00311.50
5.5.260.0060.00611.28
5.5.250.0100.00711.36
5.5.240.0090.00611.08
5.5.230.0050.00811.06
5.5.220.0100.00711.22
5.5.210.0120.00311.36
5.5.200.0090.00611.34
5.5.190.0170.00011.09
5.5.180.0120.00811.38
5.5.170.0150.00714.20
5.5.160.0110.00611.14
5.5.150.0100.00511.25
5.5.140.0130.00310.93
5.5.130.0060.00911.34
5.5.120.0090.00611.14
5.5.110.0040.01311.02
5.5.100.0090.00911.22
5.5.90.0090.00611.03
5.5.80.0090.00511.33
5.5.70.0080.00811.11
5.5.60.0060.00711.12
5.5.50.0150.00011.17
5.5.40.0050.01011.32
5.5.30.0070.00711.16
5.5.20.0100.00511.19
5.5.10.0100.00711.37
5.5.00.0110.00511.23
5.4.450.0110.00810.99
5.4.440.0200.00011.23
5.4.430.0120.00611.40
5.4.420.0060.01110.99
5.4.410.0120.00211.23
5.4.400.0050.00510.80
5.4.390.0110.00711.12
5.4.380.0060.01011.08
5.4.370.0100.00711.01
5.4.360.0070.00710.81
5.4.350.0100.00511.04
5.4.340.0090.00610.80
5.4.330.0110.01111.05
5.4.320.0080.00811.14
5.4.310.0060.00611.28
5.4.300.0130.00411.09
5.4.290.0120.00411.06
5.4.280.0130.00011.28
5.4.270.0140.00311.10
5.4.260.0110.00611.01
5.4.250.0100.00611.04
5.4.240.0100.00311.18
5.4.230.0110.00811.04
5.4.220.0050.01110.98
5.4.210.0070.00711.06
5.4.200.0080.00311.27
5.4.190.0120.00411.02
5.4.180.0050.01411.34
5.4.170.0040.01211.35
5.4.160.0070.00711.06
5.4.150.0150.00311.07
5.4.140.0090.00511.07
5.4.130.0090.00410.85
5.4.120.0100.00611.03
5.4.110.0100.00710.77
5.4.100.0100.00511.01
5.4.90.0070.00711.15
5.4.80.0080.00811.02
5.4.70.0070.01011.11
5.4.60.0050.01111.32
5.4.50.0060.00610.95
5.4.40.0090.00911.28
5.4.30.0100.00511.01
5.4.20.0070.01011.04
5.4.10.0110.00311.19
5.4.00.0120.00311.26
5.3.290.0160.00410.72
5.3.280.0130.00010.34
5.3.270.0130.00010.52
5.3.260.0090.00310.70
5.3.250.0040.01310.63
5.3.240.0170.00010.51
5.3.230.0090.00310.44
5.3.220.0140.00010.62
5.3.210.0050.01010.61
5.3.200.0110.00410.58
5.3.190.0070.00710.51
5.3.180.0080.00510.63
5.3.170.0130.00410.39
5.3.160.0120.00010.39
5.3.150.0070.00710.72
5.3.140.0090.00210.63
5.3.130.0090.00610.63
5.3.120.0050.01010.71
5.3.110.0050.01110.69
5.3.100.0060.00610.46
5.3.90.0110.00410.58
5.3.80.0100.00510.56
5.3.70.0040.01110.48
5.3.60.0090.00610.70
5.3.50.0100.00510.50
5.3.40.0090.00410.61
5.3.30.0060.00610.30
5.3.20.0100.00310.53
5.3.10.0070.00710.37
5.3.00.0100.00510.16
5.2.170.0040.0099.35
5.2.160.0060.0069.71
5.2.150.0080.0039.62
5.2.140.0070.0079.35
5.2.130.0100.0059.57
5.2.120.0110.0039.56
5.2.110.0090.0009.64
5.2.100.0090.0029.53
5.2.90.0120.0009.29
5.2.80.0030.0069.43
5.2.70.0050.0109.50
5.2.60.0120.0009.36
5.2.50.0070.0049.50
5.2.40.0090.0009.27
5.2.30.0000.0099.43
5.2.20.0090.0039.30
5.2.10.0080.0039.06
5.2.00.0110.00423.59
5.1.60.0040.0048.46
5.1.50.0070.0048.26
5.1.40.0090.0038.59
5.1.30.0100.0008.70
5.1.20.0070.0038.45
5.1.10.0050.0058.38
5.1.00.0050.0058.53
5.0.50.0070.0027.53
5.0.40.0050.0037.38
5.0.30.0100.0007.48
5.0.20.0070.0037.50
5.0.10.0080.0007.29
5.0.00.0000.0077.25
4.4.90.0030.0036.82
4.4.80.0070.0006.82
4.4.70.0040.0046.82
4.4.60.0040.0046.82
4.4.50.0020.0056.82
4.4.40.0080.0006.82
4.4.30.0060.0006.82
4.4.20.0070.0026.82
4.4.10.0040.0046.82
4.4.00.0050.0036.82
4.3.110.0040.0026.82
4.3.100.0030.0036.82
4.3.90.0000.0086.82
4.3.80.0040.0046.82
4.3.70.0000.0066.82
4.3.60.0050.0036.82
4.3.50.0060.0006.82
4.3.40.0050.0036.82
4.3.30.0000.0056.82
4.3.20.0040.0026.82
4.3.10.0000.0056.82
4.3.00.0040.0006.82

preferences:
32.49 ms | 403 KiB | 5 Q