session刷新一次才验证才消失?

WBOY
Release: 2016-06-06 20:41:19
Original
1125 people have browsed it

登陆时:存入session
session("bizNumber",1000);
注销时:销毁session
session('bizNumber',null);

html页面

session_start () ; //初始session
if(isset($_SESSION['bizNumber'])){
header ("Location:URL/index") ; //重新定向到其他页面
exit ;
}

可是继续进入index页面的时候,session还是存在,需要刷新一次才消失。
这是什么问题,找了好久都没有找到。求解答

回复内容:

登陆时:存入session
session("bizNumber",1000);
注销时:销毁session
session('bizNumber',null);

html页面

session_start () ; //初始session
if(isset($_SESSION['bizNumber'])){
header ("Location:URL/index") ; //重新定向到其他页面
exit ;
}

可是继续进入index页面的时候,session还是存在,需要刷新一次才消失。
这是什么问题,找了好久都没有找到。求解答

进入index页面时候,cookie还是存在的。session由后台控制没变。

当你刷新一次的时候。发生了重定向。重定向会导致session消失。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template