php – Yii检查用户是否在每个页面之前都被记录

前端之家收集整理的这篇文章主要介绍了php – Yii检查用户是否在每个页面之前都被记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在渲染每个页面示例之前,我必须检查用户是否已记录:

http://mypage.com/site/about

在开始检查用户是否登录,如果没有 – 重定向tom登录页面
我不想在每一个组件中添加它,如何对此?

使用访问规则来实现这将是一个更好的方法
public function accessRules()
{
     return array(
         array('allow',// allow all users to perform 'index' and 'contact' actions
              'actions'=>array('index','contact'),'users'=>array('*'),),array('allow',// allow authenticated user to perform 'delete' and 'update' actions
              'actions'=>array('update','delete'),'users'=>array('@'),array('deny',// deny all users
               'users'=>array('*'),);
}

如果你真的想要一个地方检查,那么去组件/控制器并在控制器中进行.因为所有控制器都继承自该控制器.

原文链接:https://www.f2er.com/php/135328.html

猜你在找的PHP相关文章