3v4l.org

run code in 300+ PHP versions simultaneously
<?php class foo { private $bar = null; public function __set($name, $value) { if ($name == 'bar') $this->bar = $value . $value; else throw new Exception('Property does not exists'); } public function __get($name) { if ($name == 'bar') return $this->bar; else throw new Exception('Property does not exists'); } } $obj = new foo(); $obj->bar = '123'; echo $obj->bar;
Output for git.master, git.master_jit, rfc.property-hooks
123123

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