php中的$_SESSION里的值不是全局的吗?为什么我从一个页面跳到另一页面后,$_SESSION中的值就消失了呢?
我登陆的时候设置的session,session是一个关联数组
public function loginsbumit(){
if(empty($_POST['username']) && empty($_POST['password'])){
return false;
}
$username=addslashes($_POST['username']);
$password=addslashes($_POST['password']);
if($this->auth=$this->checkuser($username,$password)){
$_SESSION['auth']=$this->auth;
return true;
}else{
return false;
}
}
登陆后跳转一个页面,在执行另一个方法时候我想查看session的值怎么都报错;