Thinkphp5 auto权限

1.Auth类文件引入

2.写一个公共类AuthInfo,所有要权限认证的类都继承此公共类AuthInfo

class AuthInfo extends Controller{
  protected function _initialize(){
    if(!session("?intel_uid")){
      echo "<script>alert('没有登陆!');window.location.href = '".url('index/index/index')."';</script>";
    }
    $uid = session('intel_uid');
    if($uid==1){
      return true;
    }
    $userArr=db('in_user')->where('id='.$uid)->find();
    $access_id = $userArr['role'];
    $auth = new Auth();
    $name=request()->module().'/'.request()->controller().'/'.request()->action();
    if(!$auth->check($name,$access_id)){
      $this->error('没有权限!');
    }
  }
}

猜你喜欢

转载自www.cnblogs.com/zhangzhongran/p/9046163.html