dqc42632 2012-03-08 09:03
浏览 9
已采纳

在php注销什么更好?

i am having a debate on what would be a better method for loging out in php , if someone could help me clarify i would be most gratefull :

I have two versions of the code for log out

1 )

$logoutGoTo = "login.php";
if (!isset($_SESSION)) {
  session_start();
}
$_SESSION['username'] = NULL;
$_SESSION['user_id'] = NULL;
unset($_SESSION['username']);
unset($_SESSION['user_id']);
$_SESSION = array();
if ($logoutGoTo != "") {header("Location: $logoutGoTo");
exit;

2)

session_start();
    session_unset();
session_destroy();

Which is the better solution?

  • 写回答

3条回答 默认 最新

  • dqunzip3183 2012-03-08 09:10
    关注

    Generally neither because they both essentially destroy the entire session.

    Sessions aren't just for keeping user's logged in. Sessions are used to track other data which may not be linked to a user's account and so you might not want to destroy it when logging out.

    Take this for example, you store the language setting in the session. Now the user logs out, you want to keep language setting but logout the user. If you destroy the session then all other data your tracking is destroyed.

    I would simply unset/remove the session variables that are keeping the user logged in.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀