thinkphp5登入並儲存session、根據不同使用者許可權跳轉不同頁面
阿新 • • 發佈:2019-01-02
本文介紹如何在thinkphp5中完成登入並儲存session、然後根據不同的使用者許可權跳轉相應頁面功能的實現。完成該步驟主要有以下三個步驟完成。
一、密碼校驗
這裡view層提交過來的使用者名稱和密碼是不加密的,資料中的密碼是經過md5加密的,所以首先對密碼進行加密,然後跟資料庫中的記錄比對,如果一致則認為成功。
二、session儲存
如果校驗成功則將使用者資訊儲存在session中。
三、根據不同許可權跳轉
有時候我們對於不同的使用者展示的頁面也不同,這時就需要我們根據使用者的許可權跳轉到相應的頁面。
四、實現程式碼
// 登入
public function login()
{
//密碼加密並從資料庫查詢記錄
$map['username'] = input('post.a');
$map['password'] = md5(input('post.b'));
$user=db('user')->where($where)->find();
//驗證成功則儲存session
if ($user) {
unset($user["psd"]);
session("user", $user['id']);
//根據不同許可權跳轉
if($user ['quanxian'] == 0){
$this->redirect('Module1/index/index');
}
elseif ($user['quanxian'] == 1) {
$this->redirect('MOdule2/index/index');
}
else{
$this->redirect('Module3/index/index');
}
}else{
print_r ('error!');
return false;
}
}