3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test implements Iterator { function key(){ return new Baz(); } function next(){} function valid(){ $this->count++; return $this->count < 4; } function current(){ return "foo"; } function rewind(){} } foreach(new Test as $x => $v) var_dump($x, $v);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Return type of Test::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/XWE3L on line 11 Deprecated: Return type of Test::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/XWE3L on line 9 Deprecated: Return type of Test::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/XWE3L on line 5 Deprecated: Return type of Test::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/XWE3L on line 10 Deprecated: Return type of Test::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/XWE3L on line 12 Deprecated: Creation of dynamic property Test::$count is deprecated in /in/XWE3L on line 10 Warning: Undefined property: Test::$count in /in/XWE3L on line 10 Fatal error: Uncaught Error: Class "Baz" not found in /in/XWE3L:6 Stack trace: #0 /in/XWE3L(15): Test->key() #1 {main} thrown in /in/XWE3L on line 6
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.59 ms | 402 KiB | 8 Q