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.
如果一个人闲置 10 分钟,那么我希望页面过期 -> 用户必须再次登录才能继续。
ini_set("session.gc_maxlifetime","600"); session_start();
session_start(); if( time() - $_SESSION['login_time'] > 600) { header("Location:login.php"); }
这将检查会话是否已运行超过 600 秒(10 分钟)。
当然首先你必须存储:
$_SESSION['login_time'] = time();
创建会话时。