黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

CakePHP Cookie 管理

cakephp cookie 管理

 

使用 cakephp 處理 cookie 既簡單又安全。有一個(gè) cookiecomponent 類用于管理 cookie。該類提供了多種使用 cookie 的方法。

要使用 cookie,請(qǐng)將這 2 個(gè)類添加到您的控制器:

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

必須首先創(chuàng)建 cookie 對(duì)象才能注冊(cè) cookie。

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

名稱和值是必填項(xiàng),其他為可選參數(shù)。

 

寫入 cookie

以下是編寫 cookie 的語法。

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

創(chuàng)建的 cookie 必須添加到 cookiecollection 中,如下所示:

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

如果已經(jīng)創(chuàng)建了 cookie 集合對(duì)象,則可以添加其余的 cookie,如下所示:

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

 

讀取 cookie

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

 

語法

系統(tǒng)讀取 cookie 的 ntax 如下:

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

這將返回 cookiecollection 接口,要獲取 cookie 的值,您必須調(diào)用 getvalue() 方法。

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

 

檢查cookie

cookiecollection 的 has() 方法會(huì)告訴你 cookie 是否存在。

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

 

示例

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

 

刪除 cookie

remove() 方法用于刪除 cookie。以下是 remove() 方法的語法。

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

remove() 方法將接受一個(gè)參數(shù),即要?jiǎng)h除的 cookie 變量 ($name) 的名稱。

 

示例 1

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

 

示例 2

在 config/routes.php 文件中進(jìn)行更改,如以下程序所示。

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 中創(chuàng)建一個(gè) cookiescontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。

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 中創(chuàng)建一個(gè) cookies 目錄,然后在該目錄下創(chuàng)建一個(gè)名為 test_cookies.php 的 view 文件。 b> 在該文件中復(fù)制以下代碼。

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 執(zhí)行上述示例-http://localhost/cakephp4/cookie/testcookies

下一節(jié):cakephp 安全

cakephp 教程

相關(guān)文章