我正在尝试为我的网站实施注销程序。当用户单击退出按钮时,我将他重定向到以下home
控制器脚本。
http : // mydomain/php/ci/index.php/index/?logout=set
在我的家庭控制器index
功能中,我检查是否 logout=set 然后销毁所有会话。
echo @$_GET['logout'];
exit();
if(@$_GET['logout'] == "set")
{
unset($_SESSION['userid']);
@$_SESSION = array();
@session_unset();
@session_destroy();
}
但是当我到达这里时,什么都没有打印出来,因为注销参数没有通过。当我点击退出按钮时,我看到以下网址。
http://localhost/php/ci/home/
为什么会这样?