<?php class Nesting { public function thisIsOk() { function __autoload($class) {} // OK. function __isset() {} // Error. } } $obj = new Nesting(); $obj->thisIsOk(); $functions = get_defined_functions(); var_dump($functions['user']);
You have javascript disabled. You will not be able to edit any code.