<?php class foo { public static function bar() { } public function getClosure() { return static function() {}; } } $foo = new foo; $closure = $foo->getClosure(); $reflection = new ReflectionFunction($closure); var_dump($reflection->getClosureThis());
You have javascript disabled. You will not be able to edit any code.