1024programmer Java session_destroy() cannot take effect immediately, how to solve it

session_destroy() cannot take effect immediately, how to solve it

session_destroy() cannot take effect immediately
When linking to a PHP page in HTML, the PHP page will destroy the session, but when the page is opened, the session still exists. Only by refreshing the PHP page again can the session be destroyed. There are only two statements on this page: $_SESSION = array(); session_destroy(); session_start() has been enabled.
What is the situation

——Solution—————– —
When you execute session_destroy(); in page B, the previous session naturally exists, otherwise there is no need to use session_destroy();
You are only re-entering page B (such as refreshing ) will find that the session is gone
Because to the user, session_destroy() only sends the instruction to log out the sessionid in COOKIE
——Solution- ——————
a.php


<?php
session_start();
$_SESSION['name'] = "kobe";
?>
se2

>b.php


<?php
session_start();
$_SESSION = array();
session_destroy( );
var_dump($_SESSION['name']);
?>

——Solution Scheme——————–

Quote:
Quote: Quote:

Then the page will never end, and of course the current session will not disappear.

The connection_aborted() sentence can check whether the client is disconnected, but its execution requires outputting content on the page, so ob_flush();flush();
Problem These two sentences will cause the page that destroys the session to fail to execute normally, that is, it must be refreshed manually to destroy the session

So, is there any other way to close this loop when the client disconnects? . Or is there any other way to execute the page that destroys the session normally?
Is this problem caused by ob_flush();flush();? What should we do?

I am doing this to prevent users from being kicked offline if they do not log in for a long time. Is there any other way?

Your page has not ended, and the session of the current page has not been updated to the file. This is why session_destroy() does not take effect immediately.
Add session_write_close(); after session_destroy(); to solve this problem.

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/session_destroy-cannot-take-effect-immediately-how-to-solve-it/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索