Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 php.ini 中获取用户的登录状态。当他登录网站时,将一条记录插入一个名为“users_login_status”的表中,当他注销时它将被删除。现在,如果浏览器关闭或会话过期意味着我如何在“users_login_status”表中跟踪和删除该特定用户的记录?
session_set_cookie_params(0); session_start();
使用这个,当他们返回浏览器时,他们应该被注销。