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