如何在 php 中使用 $this in closure
2022-08-30 18:12:40
我有这样的功能:
class Service {
function delete_user($username) {
...
$sessions = $this->config->sessions;
$this->config->sessions = array_filter($sessions, function($session) use ($this){
return $this->get_username($session->token) != $username;
});
}
}
但这不起作用,因为你不能在里面使用,是否可以在回调中执行作为类服务成员的函数?或者我需要使用 for 或 foreach 循环?$this
use