<?php class A { function __get($a){ return new A; } function __isset($a){ echo "exists"; if($a === 'a'){ return true; }else{ return false; } } } $x = new A; var_dump($x->a->b ?? 20);
You have javascript disabled. You will not be able to edit any code.