インスタンスを静的クロージャーにバインドしたり、静的クラス メソッド内に非静的クロージャーを作成したりすることは可能ですか?
これは私が意味するものです...
<?php
class TestClass {
public static function testMethod() {
$testInstance = new TestClass();
$testClosure = function() use ($testInstance) {
return $this === $testInstance;
};
$bindedTestClosure = $testClosure->bindTo($testInstance);
call_user_func($bindedTestClosure);
// should be true
}
}
TestClass::testMethod();