3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Foo { private array $data = []; public function __set(string $name, $value): void { $this->data[$name] = $value; } public function __isset(string $name): bool { return isset($this->data[$name]); } public function __unset(string $name): void { unset($this->data[$name]); } } $foo = new Foo(); $one = 1; $two = 2; $foo->$one = 'one'; $foo->$two = 'two'; var_dump( isset($foo->$one), // true isset($foo->$two) // true ); unset($foo->$one); var_dump( isset($foo->$one) // false );
Output for git.master, git.master_jit, rfc.property-hooks
bool(true) bool(true) bool(false)

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:
66.59 ms | 401 KiB | 8 Q