ThinkPHP5.1 的 auth报错问题

安装

https://github.com/5ini99/think-auth


Auth文件修改

/* 原本是这个
use think\Session;
use think\Request;
*/
use think\facade\Session;
use think\facade\Request;

$map = array(
    //'id' => ['in', $ids], 这个注释
    'type' => $type,
    'status' => 1,
);
//读取用户组所有权限规则
$rules = Db::name($this->config['auth_rule'])
    ->where('id', 'in', $ids)   //添加这个
    ->where($map)->field('condition,name')->select();








你可能感兴趣的:(ThinkPHP5.1 的 auth报错问题)