<?php function my_function() { var_dump($this->foo); } class MyClass { public $foo = 1; }; $c = new MyClass(); $closure = Closure::fromCallable('my_function'); Closure::bind($closure, $c)();
You have javascript disabled. You will not be able to edit any code.