Closure::call() 暂时绑定一个闭包对象到$this对象并调用他 class Test { private $num = 1; } $f = function() { return $this->num + 1; }; echo $f->call(new Test); //2