쿠키:
//새로 생성된 쿠키는 로컬에서 서버로 전송된 후 서버에서 가져옵니다.
(1) 쿠키 보내기
$cookies = Yii::$app->response->cookies; // 在要发送的响应中添加一个新的cookie eg:往cookies中添加用户名和密码 $cookies->add(new Cookie(['name'=>'username', 'value'=>$username,])); $cookies->add(new Cookie(['name'=>'password', 'value'=>$password,])); //删除一个cookie $cookies->remove('username'); //相当于 unset($cookies['username']);
(2) 쿠키 얻기
$cookies = Yii::$app->request->cookies; // 获取名为 "username" cookie 的值,如果不存在,返回默认值"en" $username = $cookies->getValue('username', 'en'); // 另一种方式获取名为 "username" cookie 的值 if (($cookie = $cookies->getValue('username')) !== null) { $username = $cookie->value; } // 判断是否存在名为username的cookie if (isset($cookies['username'])) { $username= $cookies['username']->value; ... }if($cookies->has('username')){}
이상은 Yii에서 쿠키 보내기 및 읽기에 대해 편집자가 소개한 내용입니다. 질문이 있는 경우 메시지를 남겨주시면 편집자가 시간에 맞춰 답변해 드리겠습니다. 또한 Script House 웹사이트를 지원해 주시는 모든 분들께 감사의 말씀을 전하고 싶습니다!