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.
在会话过期时的 gocart 中,我想显示会话已过期的警报消息。我知道会话时间将是配置文件,但是如何在会话过期时显示警报消息
检查会话已过期的最佳方法是检查存储在会话中的值是否存在.. 如果会话未过期...而不是警报,您可以flashmsg在 codeigniter 中使用来显示错误并将其重定向到其他页面..
flashmsg
例子。
if(!$this->session->userdata('youritem'){ flashMsg('error','not in session (session expired'); redirect(to/wher/you /want); })