我以编程方式实现了登录功能。
此代码如下:
$token = new UsernamePasswordToken($user, $user->getPassword(), 'main', $user->getRoles());
$this->get('security.context')->setToken($token);
$event = new InteractiveLoginEvent($this->getRequest(),$token);
$this->get('event_dispatcher')->dispatch('security.interactive_login', $event);
在此之后,我如何实现记住我?
(我知道如何使用表单,但我想以编程方式实现记住我。)</p>
请帮忙...