thinkphp5_auth 权限认证

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('没有权限!');
    }
  }
}

posted @ 2017-04-16 10:33  醉影踏雪  阅读(3854)  评论(1编辑  收藏  举报