1
クラスを匿名関数に渡さない方法はありますか?
class Foo{
public function bar(){
$data = [
'calculation' => function(){
// I don't want $this to be passed into here
}
];
}
}
匿名機能から$ thisを除外できますか?