我有代码
if(isIdleTimeExceeded())
{
logout();
header("Location:".$baseurl."index.php");
exit();
}
在 IdleTimeExceeded 我正在检查时间。
我想在会话到期后获得 jQuery 警报框。
我有代码
if(isIdleTimeExceeded())
{
logout();
header("Location:".$baseurl."index.php");
exit();
}
在 IdleTimeExceeded 我正在检查时间。
我想在会话到期后获得 jQuery 警报框。
您发布的代码是 PHP 代码。但是在页面被发送到客户端之后,您就无法再访问 php 函数了。如果空闲时间意味着用户在 x 秒内没有切换页面,那么您只需要 javascript。
<script>
//the function IdleToLong will be called after 30seconds.
//This means if the page reloads, it starts over.
setTimeout(IdleToLong, 30 * 1000); // 30 seconds
function IdleToLong() {
alert('Move your ass');
//If you also need to logout in PHP then you must notify the server that a user has been idle to long.
$.get('logout.php?reason=idle').complete(function() {
window.location.href = '/';
});
}
</script>
使用 javascript 创建警报
echo '<script type="text/javascript">alert("Logged out!!");</script>';