3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public static $has_many = "PostBlogAdmin"; public function has_many($a){ return 'hola'; } function get_relationship($model) { $class = new ReflectionClass($this); $staticProperties = $class->getStaticProperties(); foreach($staticProperties as $propertyName => $value) { if(preg_match('/^(has_many|age)$/', $propertyName) && $value == $model) { return $this->{$propertyName}($model); } } } function __get($name) { if(substr($name, -strlen('Set')) === 'Set') { echo $model = ucwords(substr($name, 0, -4)); return $this->get_relationship($model); } } } $foo = new Foo; echo $foo->PostBlogAdminSet; ?>

preferences:
46.97 ms | 402 KiB | 5 Q