当我为关闭会话分配变量不活动条件时,我在 php 中的会话有问题?
我有这个代码:
$fechaGuardada = $_SESSION["ultimoacceso"];
$ahora = date("Y-n-j H:i:s");
$tiempo_transcurrido = (strtotime($ahora)-strtotime($fechaGuardada));
//comparamos el tiempo transcurrido
if($tiempo_transcurrido >= 10) {
//si pasaron 10 segundos o más
session_destroy(); // destruyo la sesión
header("Location: index.php"); //envío al usuario a la pag. de autenticación
//sino, actualizo la fecha de la sesión
}
这里的问题是您在给定时间登录,在这种情况下是 10 秒。
如何让条件在不活动 10 秒后运行?