0

我有代码

if(isIdleTimeExceeded())
{
    logout();
    header("Location:".$baseurl."index.php");
    exit();
}

在 IdleTimeExceeded 我正在检查时间。

我想在会话到期后获得 jQuery 警报框。

4

2 回答 2

2

您发布的代码是 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>
于 2012-11-28T11:38:13.667 回答
0

使用 javascript 创建警报 echo '<script type="text/javascript">alert("Logged out!!");</script>';

于 2012-11-28T11:30:07.067 回答