3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Foo { public function __set(string $name, int $value): void { $this->{$name} = $value; } public function __get(string $name): int { return $this->{$name}; } } $o = new Foo; $o->x = '3'; var_dump($o->x);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: Foo::__set(): Argument #2 ($value) must be of type int, string given, called in /in/lWGYU on line 15 and defined in /in/lWGYU:5 Stack trace: #0 /in/lWGYU(15): Foo->__set('x', '3') #1 {main} thrown in /in/lWGYU on line 5
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:
60.99 ms | 401 KiB | 8 Q