CookieOptions
in package
Cookie 設定。
Table of Contents
Properties
- $httpOnly : bool
- HTTP リクエストのみで使用。
- $path : string
- パス
- $sameSite : string
- 同じサイト。
- $secure : bool
- HTTPS に限定。
- $span : DateInterval|null
- 期限。
Methods
- __construct() : mixed
- 生成。
- getExpires() : int
- cookie の寿命を数値に変換。
Properties
$httpOnly read-only
HTTP リクエストのみで使用。
public
bool
$httpOnly
$path read-only
パス
public
string
$path
$sameSite read-only
同じサイト。
public
string
$sameSite
Tags
$secure read-only
HTTPS に限定。
public
bool
$secure
$span
期限。
public
DateInterval|null
$span
Methods
__construct()
生成。
public
__construct(string $path, DateInterval|null $span, bool $secure, bool $httpOnly, string $sameSite) : mixed
Parameters
- $path : string
-
パス。
- $span : DateInterval|null
-
期間。
- $secure : bool
-
HTTPS に限定するか。
- $httpOnly : bool
-
HTTP リクエストのみで使用するか。
- $sameSite : string
-
同じサイト。
Tags
getExpires()
cookie の寿命を数値に変換。
public
getExpires() : int