<?php class Foo { private $a; private $b; public function __construct() { unset($this->a, $this->b); } public function __get(string $name) { $this->a = 123; $this->b = 'abc'; return $this->$name; } public function saySomething() : string { return $this->a . $this->b; } } echo (new Foo())->saySomething();
You have javascript disabled. You will not be able to edit any code.