<?php class Foo {private $a=1;} function test() { var_dump($this); } $closure = (new \ReflectionFunction('test'))->getClosure(); $object = new Foo; $closure = $closure->bindTo($object, get_class($object)); $closure();
You have javascript disabled. You will not be able to edit any code.