正在显示
1 个修改的文件
包含
5 行增加
和
1 行删除
@@ -108,7 +108,11 @@ class Index extends Backend | @@ -108,7 +108,11 @@ class Index extends Backend | ||
108 | $this->view->assign('title', __('Login')); | 108 | $this->view->assign('title', __('Login')); |
109 | Hook::listen("admin_login_init", $this->request); | 109 | Hook::listen("admin_login_init", $this->request); |
110 | 110 | ||
111 | - dump(session('token')); | 111 | + $token = session('token'); |
112 | + if(!empty($token)){ | ||
113 | + $user_id = Db::name('user_token')->where(['token'=>$token])->value('user_id'); | ||
114 | + dump($user_id); | ||
115 | + } | ||
112 | return $this->view->fetch(); | 116 | return $this->view->fetch(); |
113 | } | 117 | } |
114 | 118 |
-
请 注册 或 登录 后发表评论