<?php class A { protected $prop = 1; public function __get(string $name) { echo $name; return $this->prop; } } $a = new A(); echo $a->none;
You have javascript disabled. You will not be able to edit any code.