CakePHP Cookie 管理

cakephp cookie 管理

 

使用 cakephp 处理 cookie 既简单又安全。有一个 cookiecomponent 类用于管理 cookie。该类提供了多种使用 cookie 的方法。

要使用 cookie,请将这 2 个类添加到您的控制器:

use cake\http\cookie\cookie;
use cake\http\cookie\cookiecollection;

必须首先创建 cookie 对象才能注册 cookie。

$cookie = new cookie(name,value,expiration time,path,domain);

名称和值是必填项,其他为可选参数。

 

写入 cookie

以下是编写 cookie 的语法。

$cookie = new cookie(name,value,expiration time,path,domain);

创建的 cookie 必须添加到 cookiecollection 中,如下所示:

$cookie = new cookie('name','xyz');
$cookies = new cookiecollection([$cookie]);

如果已经创建了 cookie 集合对象,则可以添加其余的 cookie,如下所示:

$cookies = $cookies->add($cookie);

 

读取 cookie

使用 cookiecollection 中的 get() 方法读取 cookie。

 

语法

系统读取 cookie 的 ntax 如下:

cake\http\cookie\cookiecollection::get($name)

这将返回 cookiecollection 接口,要获取 cookie 的值,您必须调用 getvalue() 方法。

cake\http\cookie\cookiecollection interface::getvalue()

 

检查cookie

cookiecollection 的 has() 方法会告诉你 cookie 是否存在。

cake\http\cookie\cookiecollection::has($name)

 

示例

echo $ispresent = $this->cookies->has('name');

 

删除 cookie

remove() 方法用于删除 cookie。以下是 remove() 方法的语法。

cake\http\cookie\cookiecollection::remove($name)

remove() 方法将接受一个参数,即要删除的 cookie 变量 ($name) 的名称。

 

示例 1

$test = $this->cookies->remove('name');

 

示例 2

在 config/routes.php 文件中进行更改,如以下程序所示。

config/routes.php

use cake\http\middleware\csrfprotectionmiddleware;
use cake\routing\route\dashedroute;
use cake\routing\routebuilder;
$routes--->setrouteclass(dashedroute::class);
$routes->scope('/', function (routebuilder $builder) {
   $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
      'httponly' => true,
   ]));
   $builder->applymiddleware('csrf');
   //$builder->connect('/pages',['controller'=>'pages','action'=>'display', 'home']);
   $builder->connect('cookie/testcookies',['controller'=>'cookies','action'=>'testcookies']);
   $builder->fallbacks();
});

src/controller/cookiescontroller.php 中创建一个 cookiescontroller.php 文件。 将以下代码复制到控制器文件中。

src/controller/cookies/cookiescontroller.php

   namespace app\controller;
   use app\controller\appcontroller;
   use cake\http\cookie\cookie;
   use cake\http\cookie\cookiecollection;
   class cookiescontroller extends appcontroller{
      public $cookies;
      public function testcookies() {
         $cookie = new cookie('name','xyz');
         $this--->cookies = new cookiecollection([$cookie]);
         $cookie_val = $this->cookies->get('name');
         $this->set('cookie_val',$cookie_val->getvalue());
         $ispresent = $this->cookies->has('name');
         $this->set('ispresent',$ispresent);
         $this->set('count', $this->cookies->count());
         $test = $this->cookies->remove('name');
         $this->set('count_afterdelete', $test->count());
      }
   }
?>

src/template 中创建一个 cookies 目录,然后在该目录下创建一个名为 test_cookies.php 的 view 文件。 b> 在该文件中复制以下代码。

src/template/cookie/test_cookies.php

the value of the cookie is:  echo $cookie_val; 



   if($ispresent):

the cookie is present.

   else:

the cookie isn't present.

   endif;




   echo "the count of cookie before delete is :" .$count;




   echo "the count of cookie after delete is :" .$count_afterdelete;

 

输出

通过访问以下 url 执行上述示例-http://localhost/cakephp4/cookie/testcookies

下一节:cakephp 安全

cakephp 教程

相关文章