在学习guzzlehttp时,我注意到在匿名函数之前使用static
关键字的代码。 Phpstorm在static
之前和之后显示错误,似乎编辑也很困惑:)
$value->then(
static function ($value) use ($handlers) {
...
},
static function ($reason) use ($handlers) {
...
}
);
这是什么意思,通常的匿名函数有什么区别?