Documentation

Cookie
in package

Table of Contents

$request  : Request
__construct()  : mixed
destroy()  : bool
Domain ve subdomain altındaki tüm cookileri siler.
get()  : mixed
Adı girilen cookie değerini döndürür.
remove()  : bool
Adı girilen cookie değerini siler.
set()  : bool
Cookie oluşturur.
arrayCookieName()  : string
Dizi şeklinde cookie isimleri oluşturmak için kullanılır.
expires()  : int
Cookie için bitiş tarihi oluşturur.

Properties

Methods

__construct()

public __construct(Request $request) : mixed
Parameters
$request : Request
Return values
mixed

destroy()

Domain ve subdomain altındaki tüm cookileri siler.

public destroy() : bool
Return values
bool

get()

Adı girilen cookie değerini döndürür.

public get([string|null $name = null ]) : mixed
Parameters
$name : string|null = null

nokta ile birleşitirilmiş cookie indexi (index1.index2)

Return values
mixed

remove()

Adı girilen cookie değerini siler.

public remove(mixed $name) : bool
Parameters
$name : mixed

nokta ile birleşitirilmiş cookie indexi (index1.index2)

Return values
bool

set()

Cookie oluşturur.

public set(string $name, string $value[, int|DateInterval|Era $lifetime = 2592000 ][, string $path = "/" ][, null $domain = null ][, bool|null $secure = null ][, bool $http_only = true ][, string $sameSite = 'strict' ]) : bool
Parameters
$name : string

nokta ile birleşitirilmiş cookie indexi (index1.index2)

$value : string
$lifetime : int|DateInterval|Era = 2592000

integer saniye defaul 1 ay

$path : string = "/"
$domain : null = null
$secure : bool|null = null

true sadece https, false http, null auto

$http_only : bool = true
$sameSite : string = 'strict'

Strict, Lax, None

Return values
bool

arrayCookieName()

Dizi şeklinde cookie isimleri oluşturmak için kullanılır.

private arrayCookieName(string $name) : string

Örnek: name[index][index2]

Parameters
$name : string

nokta ile birleşitirilmiş cookie indexi (index1.index2)

Return values
string

expires()

Cookie için bitiş tarihi oluşturur.

private expires(int|DateInterval|Era $time) : int
Parameters
$time : int|DateInterval|Era

(int saniye) veya php strtotime

Return values
int

Search results