3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyIterator implements Iterator { private $var = array(1,2,3); public function __construct($array) { $var = array(1,2,3); if (is_array($array)) { $this->var = $array; } } public function rewind() { echo "rewinding\n"; reset($this->var); } public function current() { $var = current($this->var); echo "current: $var\n"; return $var; } public function key() { $var = key($this->var); echo "key: $var\n"; return $var; } public function next() { $var = next($this->var); echo "next: $var\n"; return $var; } public function valid() { $key = key($this->var); $var = ($key !== NULL && $key !== FALSE); echo "valid: $var\n"; return $var; } } class MyCollection implements IteratorAggregate { private $count = 0; /* public function __construct($array) { $var = array(1,2,3); if (is_array($array)) { $this->var = $array; } } */ // Required definition of interface IteratorAggregate public function getIterator() { return new MyIterator($this->var); } public function add($value) { $this->var[$this->count++] = $value; } } /*$values = array('value 1','value 2','value 3');*/ $coll = new Mycollection(); foreach ($coll as $key => $val) { echo "key/value: [$key -> $val]\n\n"; } ?>

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.0030.01216.50
8.3.50.0150.00516.37
8.3.40.0120.00318.41
8.3.30.0070.00718.71
8.3.20.0050.00318.60
8.3.10.0080.00018.90
8.3.00.0030.00619.25
8.2.180.0070.01516.75
8.2.170.0070.01422.96
8.2.160.0040.01218.95
8.2.150.0040.00424.18
8.2.140.0050.00324.66
8.2.130.0080.00026.16
8.2.120.0040.00421.04
8.2.110.0070.00420.94
8.2.100.0080.00417.91
8.2.90.0000.00818.22
8.2.80.0050.00518.22
8.2.70.0030.00617.63
8.2.60.0030.00517.63
8.2.50.0040.00417.93
8.2.40.0040.00419.48
8.2.30.0050.00517.57
8.2.20.0100.00017.72
8.2.10.0050.00317.77
8.2.00.0090.00317.68
8.1.280.0090.00925.92
8.1.270.0040.00423.99
8.1.260.0040.00426.35
8.1.250.0040.00428.09
8.1.240.0030.00619.16
8.1.230.0110.00022.81
8.1.220.0050.00317.74
8.1.210.0040.00418.77
8.1.200.0030.00617.23
8.1.190.0050.00517.23
8.1.180.0080.00018.10
8.1.170.0080.00017.62
8.1.160.0030.00318.94
8.1.150.0040.00418.64
8.1.140.0040.00417.39
8.1.130.0000.00719.23
8.1.120.0070.00017.51
8.1.110.0040.00417.45
8.1.100.0000.00717.42
8.1.90.0020.00517.46
8.1.80.0040.00417.45
8.1.70.0000.00717.44
8.1.60.0030.00617.54
8.1.50.0020.00517.55
8.1.40.0040.00417.59
8.1.30.0040.00417.70
8.1.20.0000.00817.67
8.1.10.0000.00717.52
8.1.00.0070.00017.47
8.0.300.0080.00319.93
8.0.290.0090.00016.75
8.0.280.0000.00718.58
8.0.270.0000.00717.20
8.0.260.0030.00316.92
8.0.250.0000.00717.05
8.0.240.0080.00017.10
8.0.230.0040.00516.98
8.0.220.0000.00717.04
8.0.210.0000.00716.98
8.0.200.0000.00717.06
8.0.190.0040.00417.05
8.0.180.0000.01017.04
8.0.170.0070.00017.07
8.0.160.0080.00017.06
8.0.150.0030.00617.01
8.0.140.0080.00016.91
8.0.130.0030.00313.41
8.0.120.0080.00316.84
8.0.110.0040.00417.03
8.0.100.0050.00217.00
8.0.90.0080.00017.04
8.0.80.0060.01316.98
8.0.70.0030.00516.79
8.0.60.0000.00816.81
8.0.50.0030.00616.95
8.0.30.0160.00617.05
8.0.20.0110.00717.00
8.0.10.0070.00017.14
8.0.00.0080.01116.92
7.4.330.0000.00513.05
7.4.320.0000.00716.54
7.4.300.0000.00616.66
7.4.290.0030.00716.67
7.4.280.0000.00816.58
7.4.270.0030.00316.56
7.4.260.0000.00613.30
7.4.250.0040.00416.43
7.4.240.0000.00716.54
7.4.230.0000.00716.64
7.4.220.0100.01416.61
7.4.210.0060.00916.57
7.4.200.0050.00316.66
7.4.190.0050.00316.59
7.4.160.0120.00816.55
7.4.150.0190.01916.52
7.4.140.0070.01017.86
7.4.130.0210.00516.66
7.4.120.0120.00916.49
7.4.110.0150.00316.73
7.4.100.0070.01016.61
7.4.90.0090.00916.70
7.4.80.0120.00919.39
7.4.70.0040.01316.52
7.4.60.0070.01016.52
7.4.50.0030.00316.43
7.4.40.0070.00716.63
7.4.30.0120.00616.43
7.4.00.0060.00914.93
7.3.330.0030.00313.38
7.3.320.0060.00013.38
7.3.310.0030.00316.46
7.3.300.0000.00716.39
7.3.290.0110.00516.40
7.3.280.0130.00716.44
7.3.270.0090.00916.41
7.3.260.0180.00716.55
7.3.240.0180.00016.61
7.3.230.0090.00916.30
7.3.210.0060.01016.52
7.3.200.0100.01316.48
7.3.190.0030.01416.53
7.3.180.0080.01116.42
7.3.170.0100.01016.64
7.3.160.0090.00616.59
7.3.120.0090.00715.03
7.3.110.0100.01014.82
7.3.100.0100.00314.95
7.3.90.0040.01114.63
7.3.80.0100.00615.22
7.3.70.0070.00714.92
7.3.60.0090.00614.89
7.3.50.0060.00614.91
7.3.40.0030.01014.88
7.3.30.0060.00914.96
7.3.20.0090.00616.46
7.3.10.0030.00816.55
7.3.00.0040.00716.63
7.2.330.0160.00616.85
7.2.320.0100.00716.84
7.2.310.0030.01416.87
7.2.300.0050.01116.80
7.2.290.0080.00816.79
7.2.250.0060.01215.00
7.2.240.0100.01015.34
7.2.230.0040.00815.20
7.2.220.0060.00914.90
7.2.210.0030.01315.32
7.2.200.0000.01515.01
7.2.190.0060.00914.85
7.2.180.0060.00914.87
7.2.170.0040.01114.87
7.2.130.0090.00716.58
7.2.120.0140.00316.68
7.2.110.0120.00616.94
7.2.100.0030.00716.77
7.2.90.0090.00316.71
7.2.80.0030.01317.02
7.2.70.0030.01016.84
7.2.60.0080.00716.71
7.2.50.0070.00716.98
7.2.40.0030.00916.68
7.2.30.0060.00916.58
7.2.20.0030.00916.81
7.2.10.0040.01216.75
7.2.00.0100.00316.77
7.1.330.0060.00915.60
7.1.320.0030.01015.74
7.1.310.0030.01315.82
7.1.300.0090.00615.68
7.1.290.0090.00915.68
7.1.280.0070.00315.84
7.1.270.0070.00715.60
7.1.260.0090.00315.50
7.1.250.0030.01015.68
7.1.200.0070.00415.98
7.1.70.0030.00617.28
7.1.60.0070.01719.25
7.1.50.0140.01834.82
7.1.00.0000.03722.52
7.0.200.0030.00616.93
7.0.140.0000.07722.04
7.0.120.0070.06322.25
7.0.60.0000.08719.95
7.0.50.0100.03317.90
7.0.40.0100.03717.69
7.0.30.0030.04017.76
7.0.20.0070.03717.68
7.0.10.0000.05017.74
7.0.00.0000.05017.86
5.6.280.0100.06721.00
5.6.210.0000.05720.49
5.6.200.0070.03718.20
5.6.190.0000.04718.18
5.6.180.0100.03318.16
5.6.170.0030.04018.28
5.6.160.0100.03718.17
5.6.150.0030.04018.22
5.6.140.0100.03318.21
5.6.130.0000.04718.16
5.6.120.0100.03318.14
5.6.110.0070.04318.28
5.6.100.0070.04318.29
5.6.90.0130.06018.23
5.6.80.0130.07017.57
5.6.70.0130.07017.55
5.6.60.0100.06017.61
5.6.50.0100.06017.61
5.6.40.0030.04017.57
5.6.30.0070.07717.54
5.6.20.0070.08017.64
5.6.10.0000.06717.51
5.6.00.0030.08017.54
5.5.350.0100.08020.54
5.5.340.0070.04018.05
5.5.330.0030.04017.99
5.5.320.0100.03318.02
5.5.310.0100.03318.01
5.5.300.0030.03717.99
5.5.290.0130.04018.08
5.5.280.0030.04318.05
5.5.270.0030.04017.96
5.5.260.0030.05317.94
5.5.250.0030.08017.76
5.5.240.0030.08317.45
5.5.230.0100.06017.37
5.5.220.0030.07017.32
5.5.210.0070.08017.31
5.5.200.0100.03317.29
5.5.190.0030.06717.30
5.5.180.0170.04017.33
5.5.160.0030.08317.30
5.5.150.0000.05317.28
5.5.140.0100.03317.27
5.5.130.0100.03317.43
5.5.120.0030.04017.34
5.5.110.0070.03717.39
5.5.100.0000.04017.19
5.5.90.0030.05717.33
5.5.80.0100.05017.22
5.5.70.0130.04717.18
5.5.60.0030.05017.18
5.5.50.0000.06317.22
5.5.40.0070.07017.21
5.5.30.0170.07017.32
5.5.20.0200.06317.20
5.5.10.0100.07317.21
5.5.00.0030.08317.23
5.4.450.0030.03719.46
5.4.440.0000.04319.44
5.4.430.0000.04019.20
5.4.420.0130.07019.35
5.4.410.0130.07019.18
5.4.400.0000.08018.96
5.4.390.0100.04318.88
5.4.380.0130.07319.27
5.4.370.0070.07719.04
5.4.360.0070.05019.02
5.4.350.0100.07018.98
5.4.340.0170.07319.12
5.4.320.0030.07319.01
5.4.310.0100.05719.13
5.4.300.0070.07719.09
5.4.290.0100.04319.27
5.4.280.0070.04019.04
5.4.270.0100.03319.13
5.4.260.0070.04319.05
5.4.250.0070.07018.98
5.4.240.0070.04319.01
5.4.230.0070.08019.13
5.4.220.0070.08018.97
5.4.210.0070.05719.26
5.4.200.0130.08319.11
5.4.190.0030.05319.04
5.4.180.0070.03719.02
5.4.170.0100.07319.11
5.4.160.0070.06019.08
5.4.150.0100.05019.04
5.4.140.0070.07016.44
5.4.130.0000.07716.39
5.4.120.0100.06316.29
5.4.110.0100.04016.40
5.4.100.0070.05016.34
5.4.90.0070.03016.45
5.4.80.0000.08016.39
5.4.70.0100.05716.40
5.4.60.0170.06316.31
5.4.50.0030.05016.41
5.4.40.0030.04716.48
5.4.30.0070.04716.40
5.4.20.0070.07016.40
5.4.10.0100.04716.33
5.4.00.0000.07715.85
5.3.290.0100.04014.68
5.3.280.0070.06714.68
5.3.270.0070.07714.59
5.3.260.0000.04314.67
5.3.250.0000.08314.66
5.3.240.0070.07314.67
5.3.230.0070.06014.57
5.3.220.0100.03714.69
5.3.210.0100.03314.61
5.3.200.0000.04014.59
5.3.190.0000.06014.55
5.3.180.0130.06314.59
5.3.170.0130.03714.64
5.3.160.0130.06014.54
5.3.150.0070.05314.68
5.3.140.0030.05314.60
5.3.130.0000.04014.61
5.3.120.0100.07314.61
5.3.110.0130.06714.59
5.3.100.0100.07314.11
5.3.90.0030.07314.25
5.3.80.0100.06013.87
5.3.70.0100.06314.05
5.3.60.0070.04714.05
5.3.50.0030.06314.06
5.3.40.0070.07313.99
5.3.30.0070.06313.96
5.3.20.0030.07313.79
5.3.10.0000.04713.53
5.3.00.0030.04713.66
5.2.170.0030.03711.05
5.2.160.0030.03311.20
5.2.150.0000.07011.18
5.2.140.0070.03311.07
5.2.130.0070.03311.19
5.2.120.0070.03711.16
5.2.110.0030.06010.98
5.2.100.0030.03011.17
5.2.90.0070.05711.11
5.2.80.0030.05711.16
5.2.70.0030.06310.96
5.2.60.0030.06311.11
5.2.50.0030.06711.05
5.2.40.0070.05310.86
5.2.30.0100.04711.00
5.2.20.0230.02011.00
5.2.10.0130.05011.10
5.2.00.0070.03310.81
5.1.60.0030.05310.07
5.1.50.0070.05010.05
5.1.40.0030.05310.04
5.1.30.0030.05710.25
5.1.20.0070.03710.43
5.1.10.0030.02710.08
5.1.00.0030.05710.17
5.0.50.0000.0338.64
5.0.40.0100.0178.36
5.0.30.0000.0338.20
5.0.20.0000.0238.21
5.0.10.0030.0278.40
5.0.00.0030.0638.18
4.4.90.0000.0377.82
4.4.80.0000.0377.82
4.4.70.0000.0337.82
4.4.60.0000.0177.82
4.4.50.0030.0137.82
4.4.40.0000.0577.82
4.4.30.0030.0337.82
4.4.20.0030.0277.82
4.4.10.0000.0237.82
4.4.00.0000.0277.82
4.3.110.0030.0137.82
4.3.100.0000.0177.82
4.3.90.0000.0207.82
4.3.80.0030.0477.82
4.3.70.0030.0337.82
4.3.60.0030.0377.82
4.3.50.0030.0337.82
4.3.40.0000.0537.82
4.3.30.0000.0237.82
4.3.20.0000.0407.82
4.3.10.0030.0307.82
4.3.00.0070.0307.82

preferences:
39.78 ms | 401 KiB | 5 Q