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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM