3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { protected $id; public function __set($key, $value) { if (isset($this->$key)) $this->$key = $value; // throw new Exception() could be added here } public function __get($key) { return isset($this->$key) ? $this->$key : null; } public function __call($name, $arguments) { $matches = array(); $pattern = '/^set([A-Za-z0-9]+)/'; if (preg_match($pattern, $name, $matches)) { //var_dump($arguments, $matches); $property = strtolower($matches[1][0]); var_dump($property, isset($this->$property)); if (isset($this->$property)) $this->$property = $arguments[0]; } } } $test = new Test; $test->setId(25); var_dump($test);
Output for git.master, git.master_jit, rfc.property-hooks
string(1) "i" bool(false) object(Test)#1 (1) { ["id":protected]=> NULL }

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.08 ms | 401 KiB | 8 Q