码迷,mamicode.com
首页 > 其他好文 > 详细

symfony3常用记忆

时间:2018-07-15 13:48:35      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:class   nbsp   color   shortcut   ssg   homepage   symfony   exce   用户   

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常用记忆

标签:class   nbsp   color   shortcut   ssg   homepage   symfony   exce   用户   

原文地址:https://www.cnblogs.com/linxingyun/p/9313285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!