3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { protected $myName; public function getMyName() { return $this->$myName; } 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 = $matches[1]; $property = strtolower($property[0]) . substr($property, 1, strlen($property)-1); var_dump($property, isset($this->$property)); $this->__set($property, $arguments[0]); } } } $test = new Test; $test->setMyName(25); var_dump($test->getMyName());

preferences:
38.09 ms | 402 KiB | 5 Q