3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo implements Iterator { private $bar = ['baz', 'tab']; public function current (){ die('hmm'); } public function key (){ die('hmm'); } public function next (){ die('hmm'); } public function rewind (){ die('hmm'); } public function valid (){ die('hmm'); } } var_dump((array) new Foo());
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Return type of Foo::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/qpXP7 on line 7 Deprecated: Return type of Foo::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/qpXP7 on line 9 Deprecated: Return type of Foo::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/qpXP7 on line 8 Deprecated: Return type of Foo::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/qpXP7 on line 11 Deprecated: Return type of Foo::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/qpXP7 on line 10 array(1) { ["Foobar"]=> array(2) { [0]=> string(3) "baz" [1]=> string(3) "tab" } }

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:
43.84 ms | 404 KiB | 8 Q