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

Laravel Cookie

laravel cookie

在處理web應(yīng)用程序中的用戶會(huì)話時(shí),cookie起著重要作用。在本章中,您將學(xué)習(xí)如何在基于laravel的web應(yīng)用程序中使用cookie。

 

創(chuàng)建一個(gè)cookie

cookie可以由laravel的全局cookie助手創(chuàng)建。它是 symfony \ component \ httpfoundation \ cookie的 一個(gè)實(shí)例。cookie可以使用withcookie()方法附加到響應(yīng)中。創(chuàng)建 illuminate \ http \ response 類的響應(yīng)實(shí)例以調(diào)用withcookie()方法。由laravel生成的cookie被加密并簽名,并且不能被客戶修改或讀取。

這里有一個(gè)解釋示例代碼。

//create a response instance
$response = new illuminate\http\response('hello world');

//call the withcookie() method with the response method
$response->withcookie(cookie('name', 'value', $minutes));

//return the response
return $response;

cookie()方法需要3個(gè)參數(shù)。第一個(gè)參數(shù)是cookie的名稱,第二個(gè)參數(shù)是cookie的值,第三個(gè)參數(shù)是cookie的持續(xù)時(shí)間,cookie將自動(dòng)刪除。

cookie可以通過(guò)使用永久方法永久設(shè)置,如下面的代碼所示。

$response->withcookie(cookie()->forever('name', 'value'));

 

檢索cookie

一旦我們?cè)O(shè)置了cookie,我們就可以通過(guò)cookie()方法檢索cookie。這個(gè)cookie()方法將只有一個(gè)參數(shù),它將是cookie的名字。cookie方法可以通過(guò)使用illuminate \ http \ request 實(shí)例來(lái)調(diào)用。

這是一個(gè)示例代碼。

//’name’ is the name of the cookie to retrieve the value of
$value = $request->cookie('name');

觀察以下示例以了解有關(guān)cookie的更多信息 -

第1步 - 執(zhí)行以下命令來(lái)創(chuàng)建一個(gè)控制器,我們將在其中操作cookie。

php artisan make:controller cookiecontroller --plain

第2步 - 成功執(zhí)行后,您將收到以下輸出 -

第3步 - 復(fù)制下面的代碼

app / http / controllers / cookiecontroller.php 文件。

應(yīng)用程序/ http /控制器/ cookiecontroller.php


namespace app\http\controllers;

use illuminate\http\request;
use illuminate\http\response;
use app\http\requests;
use app\http\controllers\controller;

class cookiecontroller extends controller {
   public function setcookie(request $request){
      $minutes = 1;
      $response = new response('hello world');
      $response--->withcookie(cookie('name', 'virat', $minutes));
      return $response;
   }
   public function getcookie(request $request){
      $value = $request->cookie('name');
      echo $value;
   }
}

第4步 - 在 app / http / routes.php文件中 添加以下行。

應(yīng)用程序/ http / routes.php文件

route::get('/cookie/set','cookiecontroller@setcookie');
route::get('/cookie/get','cookiecontroller@getcookie');

第5步 - 訪問(wèn)以下url以設(shè)置cookie。

http://localhost:8000/cookie/set

第6步 - 輸出將如下所示。 截圖中顯示的窗口取自firefox,但取決于您的瀏覽器,也可以通過(guò)cookie選項(xiàng)檢查cookie。

第7步 - 訪問(wèn)以下url以從上述url獲取cookie。

http://localhost:8000/cookie/get

第8步 - 輸出將如下圖所示。

下一節(jié):laravel 響應(yīng)

laravel 教程

相關(guān)文章