老师,我在请教一个问题,后台登陆时,你有个session的操作,那生成的那个session存在哪里了,我去哪个文件可以找到,另外为啥不用如下的方法,比如:
//存入cookie
$time = time() + 60 * 60 * 24 * 7 * 30; //记录一个月
$cookie = new \yii\web\Cookie();
$cookie->name = 'user_remeber';
$cookie->expire = $time;
$cookie->httpOnly = true;
$cookie->value = base64_encode($user[0]['user_id'] . '#' . $time);
Yii::$app->response->getCookies()->add($cookie);
类似这种方法来保存在cookie中呢?