Home  >  Article  >  Backend Development  >  能否几行代码,清空所有用户session

能否几行代码,清空所有用户session

WBOY
WBOYOriginal
2016-06-23 13:29:501484browse

网站现在登录着几百人,执行一个管理后台程序,让所有人logout,下线。

网站登录完全使用session,未用cookie,现在需要一个管理功能随时T所有人下线。


谢谢!


回复讨论(解决方案)

foreach(glob(session_save_path() . '/*.*') as $f) unlink($f);
但对正在响应的用户无效

比较好的做法是将 session 存储于数据库中

把保存session 文件的目录内所有文件删除即可。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn