<?php $foo = new class { public int $bar; public function __construct() { unset($this->bar); # will result in the invocation of magic } public function __get($name) { return "oh dear!"; } }; var_dump($foo->bar);
You have javascript disabled. You will not be able to edit any code.