<?php class Foo { private $foo = 'foo'; } $getState = function () { return $this->foo; }; $foo = new Foo(); $getStateBound = $getState->bindTo($foo, $foo); var_dump($getStateBound()); $viaStatic = Closure::bind($getState, $foo, $foo); var_dump($viaStatic());
You have javascript disabled. You will not be able to edit any code.