3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Bla implements Iterator { private $pos = 0; public function __construct() { $this->pos = 0; } function rewind() { $this->pos = 0; } function current() { return $this->pos; } function key() { return $this->pos; } function next() { $this->pos++; } function valid() { return pos < 3; } } echo "results:"; function arrara() { $bla = new Bla(); $i = 0; foreach($bla as $a) { foreach ($bla as $b) { echo "($a, $b)<br />"; $i++; if ($i > 20) return; } if ($i > 20) return; } } arrara();
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of Bla::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/oA9ZI on line 17 Deprecated: Return type of Bla::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/oA9ZI on line 27 Deprecated: Return type of Bla::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/oA9ZI on line 22 Deprecated: Return type of Bla::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/oA9ZI on line 32 Deprecated: Return type of Bla::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/oA9ZI on line 12 results: Fatal error: Uncaught Error: Undefined constant "pos" in /in/oA9ZI:34 Stack trace: #0 /in/oA9ZI(46): Bla->valid() #1 /in/oA9ZI(59): arrara() #2 {main} thrown in /in/oA9ZI on line 34
Process exited with code 255.
Output for 8.0.0 - 8.0.30
results: Fatal error: Uncaught Error: Undefined constant "pos" in /in/oA9ZI:34 Stack trace: #0 /in/oA9ZI(46): Bla->valid() #1 /in/oA9ZI(59): arrara() #2 {main} thrown in /in/oA9ZI on line 34
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
results: Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 0)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 1)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 2)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 3)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 4)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 5)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 6)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 7)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 8)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 9)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 10)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 11)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 12)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 13)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 14)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 15)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 16)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 17)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 18)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 19)<br /> Warning: Use of undefined constant pos - assumed 'pos' (this will throw an Error in a future version of PHP) in /in/oA9ZI on line 34 (0, 20)<br />
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33
results: Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 0)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 1)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 2)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 3)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 4)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 5)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 6)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 7)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 8)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 9)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 10)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 11)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 12)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 13)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 14)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 15)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 16)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 17)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 18)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 19)<br /> Notice: Use of undefined constant pos - assumed 'pos' in /in/oA9ZI on line 34 (0, 20)<br />
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting '{' in /in/oA9ZI on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting '{' in /in/oA9ZI on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/oA9ZI on line 3
Process exited with code 255.

preferences:
273.81 ms | 401 KiB | 344 Q