当我登录我的用户时,我这样做:
$logkey = md5(uniqid());
$_SESSION['user'] = array(
'id' => $udata['id'],
'username' => $udata['username'],
'logkey' => $logkey
);
setcookie('uid', base64_encode($udata['id']),(time()+2592000));
setcookie('ulogkey', $logkey,(time()+2592000));
setcookie('rmu', $udata['rmu'],(time()+2592000));
虽然我已将会话设置为登录后的一个月,但有时我会在10分钟后或在关闭浏览器时退出。
我做错了什么?