如何在Symfony2中注销用户

时间:2016-10-17 10:22:31

标签: php symfony security authentication logout

我需要在用户管理中更改其帐户后强制退出用户。

我发现的唯一例子是如何退出当前用户

$this->container->get('security.context')->setToken(null);

而我需要注销一个任意用户。

1 个答案:

答案 0 :(得分:2)

如果您正在使用本机php会话处理程序,则无法执行此操作。 否则,如果您将会话存储在数据库中,则可以执行此操作,请参阅PdoSessionHandler to Store Sessions in the Database