销毁浏览器选项卡上的 PHP 会话关闭

问题描述 投票:0回答:1

我被困住了,我正在做项目hotbartendersla

我在活动预订中使用了很多会话来处理数据,现在我想在用户关闭浏览器的窗口/选项卡时销毁会话,因为当我打开网站时,选择仍然与我一样。

我用过这个

<script type="text/javascript">
  window.onbeforeunload = function() {

    $.post("mysessionsdestroypage.php",function(data){
    });  

  }
</script>

但是当我跳到第 2 步、第 3 步时,我的会话被破坏,并且第 4 步中的数据未到达。 我搜索了很多,但没有找到可靠的解决方案

php session session-variables session-cookies session-timeout
1个回答
4
投票

首先在要清除会话的页面上设置会话超时

<?php
// destroy session in 15 minutes, 900 ms =15 minutes

if (isset($_SESSION['LAST_ACTIVITY_step1']) && (time() -   $_SESSION['LAST_ACTIVITY_step1'] > 900)) {

 header("Location:http://www.hotbartendersla.com/session-destroy");
 }
 $_SESSION['LAST_ACTIVITY_step1'] = time(); // the start of the session.

?>

然后创建一个新页面(在 WordPress 中)来销毁会话并向该页面添加模板,

pagedestroy-sessions.php

<?php
/*
Template Name: Destroy Sessions
*/
session_start();

include('header.php');


 session_destroy();
 session_unset();
 ?>
 <h2>Session Has Been Destroyed </h2>
<?php
include('footer.php');
?>

<script type="text/javascript">
function redirect() {
  document.location = 'https://www.hotbartendersla.com/event-booking-step-1';
}
  <!- after 1 second redirect to event-booking-step-1 Page-->
  setTimeout(redirect(),1000);

</script>
© www.soinside.com 2019 - 2024. All rights reserved.