是否可以在 PHP 中从自身内部引用匿名函数?
2022-08-30 22:01:26
我正在尝试执行如下操作:
// assume $f is an arg to the wrapping function
$self = $this;
$func = function() use($f, $ctx, $self){
$self->remove($func, $ctx); // I want $func to be a reference to this anon function
$args = func_get_args();
call_user_func_array($f, $args);
};
是否可以引用分配给$func的函数?