gpt4 book ai didi

php - 在php中注销和重定向 session

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

下面是我的 php 站点中的链接。单击此按钮后,用户的 session 应终止,他应再次重定向到主页。我已为该概念编写了如下代码,但它显示我只有一个空白页面(它没有重定向到主页)..请更正我的编码

<a href="Logout.php">
click here to log out</a>

Logout.php 中的编码如下

<?
session_start();
session_unset();
session_destroy();
ob_start();
header("location:home.php");
ob_end_flush();
include 'home.php';
//include 'home.php';
exit();
?>

最佳答案

只有这个是必要的

session_start();
unset($_SESSION["nome"]); // where $_SESSION["nome"] is your own variable. if you do not have one use only this as follow **session_unset();**
header("Location: home.php");

关于php - 在php中注销和重定向 session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4608182/

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