• php后台如何避免用户直接进入方法


    1)创建BaseController控制器继承Controller(后台的一切操作要继承BaseController):

    在BaseController里面添加:

    public function checkLogin() {
           
            if (Yii::app()->authority->isLogin() == Yii::app()->authority->getStatus('NOTLOGIN')) {
                $url = $this->createUrl('user/login');
                if (Yii::app()->request->isPostRequest && Yii::app()->request->isAjaxRequest) {
                    echo json_encode(array('code' => -101, 'message' => '用户未登录。', 'callback' => 'window.location="' . $url . '";'));
                } else if (Yii::app()->request->isAjaxRequest) {
                    echo '<script language="javascript">window.location="' . $url . '";</script>';
                } else {
                    $this->redirect($url);
                }
                exit;
            }
            return true;
        }
    

    在components目录下创建Authority.php文件:

    <?php
    
    /**
     * 权限检查组件
     */
    class Authority extends CComponent {
        private $NOTLOGIN = -1;
        private $FAILED = -2;
        private $PASS = 1;
    
        public function init() {
            
        }
    
        /**
         * 检查是否登陆
         * @return boolean 
         */
        function isLogin() {
            return isset(Yii::app()->session['user']) ? $this->PASS : $this->NOTLOGIN;
        }
    
     
        /**
         * 获取状态值
         * @param string $name
         * @return int 
         */
        public function getStatus($name){
            return $this->$name;
        }
    }
    

      

  • 相关阅读:
    linux下配置redis
    前端之JavaScript:JS之DOM对象一
    前端之JavaScript:JavaScript对象
    css样式之补充
    css属性中常见的操作方法
    css属性操作
    css选择器
    html 表单操作
    前端基础之html
    1231211221211221
  • 原文地址:https://www.cnblogs.com/fengzhiqiangcaisangzi/p/3370267.html
Copyright © 2020-2023  润新知