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.
有谁知道如何销毁 Zfcuser 会话变量?
如果发生某些事件,我想结束会话吗?
我检查了 wiki,唯一的讨论是关于设置自动超时。我想手动销毁会话。
如果您要使用一般注销功能session_destroy();就足够了,否则只需使用unset($_SESSION['zfcuser']);
session_destroy();
unset($_SESSION['zfcuser']);