3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * This class is a hand written simplified version of PHP native `ArrayObject` * class, to show that it behaves differently than the PHP native implementation. */ class CustomArrayObject implements ArrayAccess, IteratorAggregate, Countable, Serializable { private $array; public function __construct(array $array = null) { $this->array = $array ?: array(); } public function offsetExists($offset) { return array_key_exists($offset, $this->array); } public function offsetGet($offset) { return $this->array[$offset]; } public function offsetSet($offset, $value) { if (null === $offset) { $this->array[] = $value; } else { $this->array[$offset] = $value; } } public function offsetUnset($offset) { unset($this->array[$offset]); } public function getIterator() { return new ArrayIterator($this->array); } public function count() { return count($this->array); } public function serialize() { return serialize($this->array); } public function unserialize($serialized) { $this->array = (array) unserialize((string) $serialized); } } $array = array('foo' => 'bar', 'nulled' => null); $native = new ArrayObject($array); $custom = new CustomArrayObject($array); $a = array_key_exists('missing', $custom); var_dump(isset($custom['missing']) || array_key_exists('missing', $custom));

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.0150.00318.55
8.3.50.0110.00722.01
8.3.40.0130.00318.62
8.3.30.0070.00718.92
8.3.20.0080.01120.46
8.3.10.0120.00323.73
8.3.00.0120.00620.71
8.2.180.0080.01116.75
8.2.170.0170.00722.96
8.2.160.0140.00720.35
8.2.150.0140.00424.18
8.2.140.0100.01024.66
8.2.130.0110.00426.16
8.2.120.0000.00819.48
8.2.110.0030.00622.24
8.2.100.0040.00720.50
8.2.90.0030.00519.17
8.2.80.0040.00417.97
8.2.70.0080.00017.50
8.2.60.0040.00418.05
8.2.50.0000.01018.07
8.2.40.0080.00418.16
8.2.30.0090.00018.36
8.2.20.0000.00817.84
8.2.10.0040.00418.17
8.2.00.0040.00417.88
8.1.280.0150.00625.92
8.1.270.0060.00323.77
8.1.260.0080.00526.35
8.1.250.0070.01128.09
8.1.240.0030.00622.18
8.1.230.0040.00719.19
8.1.220.0040.00417.74
8.1.210.0000.00918.77
8.1.200.0000.01017.38
8.1.190.0040.00417.35
8.1.180.0000.00818.10
8.1.170.0040.00418.72
8.1.160.0040.00422.05
8.1.150.0000.00818.72
8.1.140.0040.00417.57
8.1.130.0000.00917.93
8.1.120.0080.00017.40
8.1.110.0080.00317.40
8.1.100.0040.00417.50
8.1.90.0070.00017.46
8.1.80.0040.00417.40
8.1.70.0000.00717.40
8.1.60.0000.00817.63
8.1.50.0000.00817.48
8.1.40.0030.00917.54
8.1.30.0030.00517.70
8.1.20.0040.00417.62
8.1.10.0030.00517.66
8.1.00.0100.00017.43
8.0.300.0040.00418.77
8.0.290.0040.00416.75
8.0.280.0000.00718.49
8.0.270.0080.00017.26
8.0.260.0000.00717.30
8.0.250.0030.00316.96
8.0.240.0040.00416.94
8.0.230.0040.00416.92
8.0.220.0000.00716.89
8.0.210.0040.00416.99
8.0.200.0000.00717.06
8.0.190.0040.00416.98
8.0.180.0040.00417.03
8.0.170.0050.00317.04
8.0.160.0000.00717.13
8.0.150.0040.00416.92
8.0.140.0090.00016.94
8.0.130.0030.00313.48
8.0.120.0030.00616.89
8.0.110.0080.00016.97
8.0.100.0000.00716.99
8.0.90.0030.00517.00
8.0.80.0040.01117.00
8.0.70.0040.00416.89
8.0.60.0000.00817.07
8.0.50.0030.00617.00
8.0.30.0080.01416.95
8.0.20.0110.01017.40
8.0.10.0000.00817.15
8.0.00.0050.01416.90
7.4.330.0000.00515.14
7.4.320.0030.00316.56
7.4.300.0070.00016.50
7.4.290.0070.00016.64
7.4.280.0000.00716.46
7.4.270.0000.00816.68
7.4.260.0000.00716.60
7.4.250.0080.00016.50
7.4.240.0040.00316.63
7.4.230.0040.00416.43
7.4.220.0070.01016.52
7.4.210.0120.00316.61
7.4.200.0070.00016.52
7.4.160.0110.00416.42
7.4.150.0030.01517.40
7.4.140.0090.00917.86
7.4.130.0110.00716.51
7.4.120.0140.00316.63
7.4.110.0140.00316.52
7.4.100.0120.00616.60
7.4.90.0100.00716.56
7.4.80.0070.01019.39
7.4.70.0090.00916.79
7.4.60.0100.00616.68
7.4.50.0000.00916.68
7.4.40.0100.00616.39
7.4.30.0150.00916.57
7.4.00.0080.01014.96
7.3.330.0000.00513.46
7.3.320.0000.00513.25
7.3.310.0030.00516.21
7.3.300.0030.00316.22
7.3.290.0070.00716.47
7.3.280.0070.01116.38
7.3.270.0130.00317.40
7.3.260.0190.00916.39
7.3.250.0070.01216.65
7.3.240.0070.01916.56
7.3.230.0110.00616.46
7.3.210.0090.01016.49
7.3.200.0110.00719.39
7.3.190.0090.00916.41
7.3.180.0120.00416.66
7.3.170.0000.01616.66
7.3.160.0060.01016.49
7.3.120.0080.00915.01
7.3.110.0100.00714.86
7.3.100.0040.01114.64
7.3.90.0040.00715.12
7.3.80.0060.00915.01
7.3.70.0090.00614.93
7.3.60.0080.00514.66
7.3.50.0030.01014.70
7.3.40.0050.00914.77
7.3.30.0090.00314.67
7.3.20.0060.00616.46
7.3.10.0060.00616.73
7.3.00.0070.01116.84
7.2.330.0170.00016.50
7.2.320.0100.00716.73
7.2.310.0080.00816.87
7.2.300.0060.01116.61
7.2.290.0130.00516.71
7.2.250.0040.01515.08
7.2.240.0000.02115.02
7.2.230.0090.00614.70
7.2.220.0120.00415.21
7.2.210.0000.01514.64
7.2.200.0030.00815.08
7.2.190.0090.00614.77
7.2.180.0040.00715.07
7.2.170.0030.01015.09
7.2.80.0030.00316.64
7.2.00.0300.00319.00
7.1.330.0040.01115.71
7.1.320.0110.00015.79
7.1.310.0060.00615.61
7.1.300.0030.00815.55
7.1.290.0030.00915.59
7.1.280.0070.00715.90
7.1.270.0030.01015.83
7.1.260.0100.00715.70
7.1.200.0040.00715.70
7.1.100.0040.01418.20
7.1.70.0040.00417.09
7.1.60.0070.01719.70
7.1.50.0130.01016.95
7.1.00.0030.07722.43
7.0.200.0030.00616.79
7.0.140.0070.06721.92
7.0.60.0030.07319.88
7.0.50.0070.07017.88
7.0.40.0100.08020.20
7.0.30.0230.08020.19
7.0.20.0270.03320.23
7.0.10.0100.08320.12
7.0.00.0130.07720.23
5.6.280.0100.06721.16
5.6.210.0100.08320.57
5.6.200.0030.04018.19
5.6.190.0070.08720.48
5.6.180.0330.05720.39
5.6.170.0200.05020.50
5.6.160.0030.05020.70
5.6.150.0030.08718.16
5.6.140.0070.08318.19
5.6.130.0100.07718.29
5.6.120.0100.07021.00
5.6.110.0000.09020.98
5.6.100.0070.08321.12
5.6.90.0130.06320.96
5.6.80.0030.07720.52
5.5.350.4230.04320.42
5.5.340.0000.04318.10
5.5.330.0000.04320.30
5.5.320.0270.07720.21
5.5.310.0330.04320.31
5.5.300.0070.08018.07
5.5.290.0030.06317.95
5.5.280.0000.07320.82
5.5.270.0030.09020.77
5.5.260.0070.05020.90
5.5.250.0170.07020.79
5.5.240.0230.02720.08
5.4.450.3170.03719.32
5.4.440.3200.04019.32
5.4.430.3200.04019.39
5.4.420.3000.04019.37
5.4.410.2900.03719.07
5.4.400.3370.03319.20
5.4.390.3230.03318.87
5.4.380.3270.04318.89
5.4.370.3030.03719.05
5.4.360.3270.03719.00
5.4.350.3170.04018.87
5.4.340.3230.03719.09
5.4.320.3230.03719.11
5.4.310.3300.03019.20
5.4.300.3200.03719.08
5.4.290.3170.04019.05
5.4.280.3170.04019.01
5.4.270.3100.04318.95
5.4.260.3270.03319.07
5.4.250.2930.03719.04
5.4.240.2900.04018.86
5.4.230.3100.04719.08
5.4.220.3100.04019.04
5.4.210.3030.03719.07
5.4.200.3200.03719.07
5.4.190.3200.04319.21
5.4.180.3470.03319.22
5.4.170.3300.03319.06
5.4.160.2930.04019.21
5.4.150.2930.04019.21
5.4.140.3330.03016.33
5.4.130.3230.03716.39
5.4.120.3000.03316.49
5.4.110.3300.03716.26
5.4.100.2470.03716.45
5.4.90.3530.03316.56
5.4.80.3230.02716.43
5.4.70.3270.04016.24
5.4.60.3430.02716.26
5.4.50.3300.03316.52
5.4.40.3000.03716.51
5.4.30.3270.03316.43
5.4.20.3800.04716.25
5.4.10.2930.03316.23
5.4.00.2870.03316.11
5.3.290.3300.03014.61
5.3.280.3970.04014.69
5.3.270.3130.03714.52
5.3.260.3000.04014.61
5.3.250.2830.04014.60
5.3.240.2900.03714.59
5.3.230.3130.03314.69
5.3.220.3100.04014.60
5.3.210.3300.04014.70
5.3.200.3130.03314.60
5.3.190.3100.03714.60
5.3.180.3230.04014.57
5.3.170.3270.03314.61
5.3.160.3230.02714.72
5.3.150.2830.04014.72
5.3.140.3500.03714.48
5.3.130.3330.04314.46
5.3.120.3030.03314.57
5.3.110.3200.04314.46
5.3.100.3200.04013.95
5.3.90.3300.04014.14
5.3.80.3270.03714.04
5.3.70.3070.03014.26
5.3.60.3230.03713.92
5.3.50.3100.03713.91
5.3.40.3300.02713.97
5.3.30.3270.03013.83
5.3.20.3270.04013.79
5.3.10.3230.04013.68
5.3.00.3000.04013.70
5.2.170.2500.03311.08
5.2.160.2700.02711.20
5.2.150.2600.02311.13
5.2.140.2500.03011.38
5.2.130.2700.03311.25
5.2.120.2630.02711.08
5.2.110.2530.03011.08
5.2.100.2730.03011.08
5.2.90.2800.03311.18
5.2.80.2600.03011.14
5.2.70.2730.03011.15
5.2.60.2730.02311.13
5.2.50.2500.02711.17
5.2.40.2100.02311.08
5.2.30.2170.03311.08
5.2.20.2470.02311.11
5.2.10.2230.02711.08
5.2.00.2200.02711.08
5.1.60.2270.02311.08
5.1.50.2270.02311.08
5.1.40.2170.02311.08
5.1.30.2200.03011.08
5.1.20.2170.02011.08
5.1.10.2270.02311.08
5.1.00.2030.02311.08
5.0.50.1270.02311.08
5.0.40.1130.02311.08
5.0.30.1130.03011.08
5.0.20.1200.02311.08
5.0.10.1130.02011.08
5.0.00.1230.03311.08
4.4.90.1230.01311.08
4.4.80.1130.01711.08
4.4.70.1070.02011.08
4.4.60.0970.01311.08
4.4.50.1130.02311.08
4.4.40.1230.02711.08
4.4.30.1070.01311.08
4.4.20.1170.02311.08
4.4.10.0970.01711.08
4.4.00.1200.02311.08
4.3.110.1200.01711.08
4.3.100.1270.01311.08
4.3.90.1200.01711.08
4.3.80.1230.02711.08
4.3.70.1170.01711.08
4.3.60.1070.01711.08
4.3.50.1170.02011.08
4.3.40.0930.02711.08
4.3.30.0700.02011.08
4.3.20.0730.01011.08
4.3.10.0630.02711.08
4.3.00.0670.03011.08

preferences:
50.64 ms | 401 KiB | 5 Q