您好,登錄后才能下訂單哦!
這篇“PHP中ThinkPhp框架的token怎么使用”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“PHP中ThinkPhp框架的token怎么使用”文章吧。
一、token在ThinkPhp框架的使用
1. 首先在數(shù)據(jù)庫的 users 表中添加兩個字段token、time_out
token 用于存儲用戶的 token
time_out 用于設(shè)置用戶 token 的過期時間
2.創(chuàng)建函數(shù)
checkToekn($token)
函數(shù)用于檢驗 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)建函數(shù)
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":"登錄成功"}'); } } } }
二、Token的概念
token是客戶端頻繁向服務(wù)器端請求數(shù)據(jù),服務(wù)器頻繁的去數(shù)據(jù)庫查詢用戶名和密碼判斷用戶名和密碼正確與否,并作出相應(yīng)的提示,在這樣的背景下,token便應(yīng)運(yùn)而生了。
以上就是關(guān)于“PHP中ThinkPhp框架的token怎么使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。