<?php #[AllowDynamicProperties] class Foo { public function __set($name, $value) { $this->{$name} = $value; } } $foo = new Foo(); $foo->bar = 'bar'; var_dump($foo);
You have javascript disabled. You will not be able to edit any code.