3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Shiterator implements SeekableIterator { private $_array = array(); private $position; public function __construct(array $array) { $this->_array = $array; } public function seek($position) { if (!isset($this->_array[$position])) { throw new OutOfBoundsException("invalid seek position ($position)"); } $this->position = $position; } public function rewind() { $this->position = 0; } public function current() { return $this->array[$this->position]; } public function key() { return $this->position; } public function next() { ++$this->position; } public function valid() { return isset($this->array[$this->position]); } } $stdcls = new stdClass(); $stdcls->message = 'PHP, still a peice of shit.'; $i = new Shiterator(array($stdcls)); foreach ($i as $t) { echo $stdcls->message; $stdcls->message = 'Zend still produces garbage.'; } var_dump($i);
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Deprecated: Return type of Shiterator::seek($position) should either be compatible with SeekableIterator::seek(int $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/tHueF on line 11 Deprecated: Return type of Shiterator::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/tHueF on line 23 Deprecated: Return type of Shiterator::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/tHueF on line 31 Deprecated: Return type of Shiterator::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/tHueF on line 27 Deprecated: Return type of Shiterator::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/tHueF on line 35 Deprecated: Return type of Shiterator::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/tHueF on line 19 object(Shiterator)#2 (2) { ["_array":"Shiterator":private]=> array(1) { [0]=> object(stdClass)#1 (1) { ["message"]=> string(27) "PHP, still a peice of shit." } } ["position":"Shiterator":private]=> int(0) }
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
object(Shiterator)#2 (2) { ["_array":"Shiterator":private]=> array(1) { [0]=> object(stdClass)#1 (1) { ["message"]=> string(27) "PHP, still a peice of shit." } } ["position":"Shiterator":private]=> int(0) }
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
object(Shiterator)#2 (2) { ["_array:private"]=> array(1) { [0]=> object(stdClass)#1 (1) { ["message"]=> string(27) "PHP, still a peice of shit." } } ["position:private"]=> int(0) }
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE in /in/tHueF on line 7
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting '{' in /in/tHueF 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/tHueF on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/tHueF on line 3
Process exited with code 255.

preferences:
257.61 ms | 401 KiB | 352 Q