<?php class Cl { public string $name; public function __get(string $n): void { var_dump('__get: ' . $n); } } $obj = new Cl(); // read on uninitialized typed property try { $obj->name; } catch (\Error $e) { echo $e->getMessage() . "\n"; } // read on unset typed property unset($obj->name); try { $obj->name; } catch (\Error $e) { echo $e->getMessage() . "\n"; }
You have javascript disabled. You will not be able to edit any code.