提交 59739af8 authored 作者: chengye's avatar chengye

修复登录问题

上级 3f3bf717
...@@ -68,6 +68,7 @@ class Login extends Controller ...@@ -68,6 +68,7 @@ class Login extends Controller
{ {
session(null); session(null);
cookie(null); cookie(null);
(new SingleSign())->clear();
$this->redirect('/login'); $this->redirect('/login');
} }
......
...@@ -92,4 +92,11 @@ class SingleSign { ...@@ -92,4 +92,11 @@ class SingleSign {
} }
} }
public function clear($prex = 'PHPREDIS_SESSION:'){
$sid = Cookie::get('PHPSESSID');
$sid = $prex.$sid;
if($this->instence->set($sid,'')) return true;
return false;
}
} }
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论