<?php
include('session_sty_chk.php');
session_start();
if(session_destroy()) // Destroying All Sessions
{
//echo "<script>alert('$login_sessionn log out successfully');</script>";
echo"<script>window.location.href = 'index_sty_chk.php';</script>";
//header("Location: index.php"); // Redirecting To Home Page
}
?>
上面的代码是会话破坏代码。
在我的应用程序中,我创建了两个会话 会议名称: - 1:-admin, 2:-society用户
当我点击退出按钮然后去管理和社会用户会话时。
所以先生,我想在应用程序中只使用社交用户会话,所以帮助我解决它。
答案 0 :(得分:6)
unset($_SESSION['society user']);
使用此代码
答案 1 :(得分:0)
来自php网站:
<?php
$session_id_to_destroy = 'nill2if998vhplq9f3pj08vjb1';
// 1. commit session if it's started.
if (session_id()) {
session_commit();
}
// 2. store current session id
session_start();
$current_session_id = session_id();
session_commit();
// 3. hijack then destroy session specified.
session_id($session_id_to_destroy);
session_start();
session_destroy();
session_commit();
// 4. restore current session id. If don't restore it, your current session will refer to the session you just destroyed!
session_id($current_session_id);
session_start();
session_commit();
?>
链接:http://php.net/manual/en/function.session-destroy.php#114709