gpt4 book ai didi

php - 在 php 中闲置 15 分钟后自动注销

转载 作者:IT王子 更新时间:2023-10-28 23:55:01 26 4
gpt4 key购买 nike

如果用户没有在网站上进行任何类型的事件,我想销毁 session 。当时在 5 个用户后自动重定向到索引页面。这怎么可能?在带有 session 处理的 php 中是可能的,为此我必须维护或更新用户登录时间或不..

最佳答案

这里用这个小片段相对容易实现:

 if(time() - $_SESSION['timestamp'] > 900) { //subtract new timestamp from the old one
echo"<script>alert('15 Minutes over!');</script>";
unset($_SESSION['username'], $_SESSION['password'], $_SESSION['timestamp']);
$_SESSION['logged_in'] = false;
header("Location: " . index.php); //redirect to index.php
exit;
} else {
$_SESSION['timestamp'] = time(); //set new timestamp
}

关于php - 在 php 中闲置 15 分钟后自动注销,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20516969/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com