小編給大家分享一下PHP中ThinkPhp框架的token怎么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯是工信部頒發(fā)資質IDC服務器商,為用戶提供優(yōu)質的雅安電信機房服務
Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發(fā)等。
在做登錄信息核對時,面對源源不斷的數據比對,都會給服務器造成一定的壓力。對于我們常用的ThinkPhp框架也會有這樣的困擾。不過有一種方法可以解決這類問題,那就是Token的作用。
一、Token的概念
token是客戶端頻繁向服務器端請求數據,服務器頻繁的去數據庫查詢用戶名和密碼判斷用戶名和密碼正確與否,并作出相應的提示,在這樣的背景下,token便應運而生了。
二、token在ThinkPhp框架的使用
1. 首先在數據庫的 users 表中添加兩個字段token、time_out
token 用于存儲用戶的 token
time_out 用于設置用戶 token 的過期時間
2.創(chuàng)建函數
checkToekn($token)
函數用于檢驗 token 是否存在, 并且更新 token。
public function checkToken($token) { $user = new \app\index\model\Users(); $res = $user->field('time_out')->where('token', $token)->select(); if (!empty($res)) { //dump(time() - $res[0]['time_out']); if (time() - $res[0]['time_out'] > 0) { return 90003; //token長時間未使用而過期,需重新登陸 } $new_time_out = time() + 604800; //604800是七天 $res = $user->isUpdate(true) ->where('token', $token) ->update(['time_out' => $new_time_out]); if ($res) { return 90001; //token驗證成功,time_out刷新成功,可以獲取接口信息 } } return 90002; //token錯誤驗證失敗 }
3.創(chuàng)建函數
douserLogin($username,$password)
用于驗證用戶名密碼, 并登陸, 返回 token 信息。
public function douserLogin() { $user = new \app\index\model\Users(); $userisset = $user->where('username', $username)->find(); if ($userisset == null) { return json_decode('{"user":"' . $username . '","code":"400","msg":"用戶不存在"}'); } else { $userpsisset = $user ->where('username', $username) ->where('password', sha1(md5($password)))->find(); if ($userpsisset == null) { return json_decode('{"user":"' . $username . '","code":"401","msg":"密碼錯誤"}'); } else { //session('user', $username); $token = $this->makeToken(); $time_out = strtotime("+7 days"); $userinfo = ['time_out' => $new_time_out, 'token' => $token]; $res = $user->isUpdate(true) ->where('username', $username) ->update($userinfo); if ($res) { return json_decode('{"user":"' . $username . '","toekn":'.$token.' "code":"0","msg":"登錄成功"}'); } } } }
看完了這篇文章,相信你對“PHP中ThinkPhp框架的token怎么用”有了一定的了解,如果想了解更多相關知識,歡迎關注創(chuàng)新互聯行業(yè)資訊頻道,感謝各位的閱讀!