symfony3常用记忆
Posted 织梦行云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了symfony3常用记忆相关的知识,希望对你有一定的参考价值。
1、控制器里获取当前用户信息
$user = $this->getUser();
2、判断当前用户是否登录
// yay! Use this to see if the user is logged in if (!$this->get(‘security.authorization_checker‘)->isGranted(‘IS_AUTHENTICATED_FULLY‘)) { throw $this->createAccessDeniedException(); } // equivalent shortcut: // $this->denyAccessUnlessGranted(‘IS_AUTHENTICATED_FULLY‘); // boo :(. Never check for the User object to see if they‘re logged in if ($this->getUser()) { }
3、控制器里面重定向
$this->redirectToRoute(‘homepage‘);
以上是关于symfony3常用记忆的主要内容,如果未能解决你的问题,请参考以下文章