3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo implements Stringable { public function __toString(): string { return 'FOO'; } public function __get(mixed $key): mixed { var_dump(compact('key')); return 1; } } $foo = new Foo(); $foo->foo; $foo->$foo; $foo->{1}; $foo->{false}; $foo->{null};
Output for git.master_jit, git.master
array(1) { ["key"]=> string(3) "foo" } array(1) { ["key"]=> string(3) "FOO" } array(1) { ["key"]=> string(1) "1" } array(1) { ["key"]=> string(0) "" } array(1) { ["key"]=> string(0) "" }

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:
26.08 ms | 405 KiB | 5 Q