PHP 클래스 Cartalyst\Sentinel\Cookies\NativeCookie

상속: implements Cartalyst\Sentinel\Cookies\CookieInterface
파일 보기 프로젝트 열기: cartalyst/sentinel 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$options array The cookie options.

공개 메소드들

메소드 설명
__construct ( string | array $options = [] ) : void Create a new cookie driver.
forget ( ) {@inheritDoc}
get ( ) {@inheritDoc}
put ( $value ) {@inheritDoc}

보호된 메소드들

메소드 설명
getCookie ( ) : mixed Returns a PHP cookie.
minutesToLifetime ( integer $minutes ) : integer Takes a minutes parameter (relative to now) and converts it to a lifetime (unix timestamp).
setCookie ( mixed $value, integer $lifetime, string $path = null, string $domain = null, boolean $secure = null, boolean $httpOnly = null ) : void Sets a PHP cookie.

메소드 상세

__construct() 공개 메소드

Create a new cookie driver.
public __construct ( string | array $options = [] ) : void
$options string | array
리턴 void

forget() 공개 메소드

{@inheritDoc}
public forget ( )

get() 공개 메소드

{@inheritDoc}
public get ( )

getCookie() 보호된 메소드

Returns a PHP cookie.
protected getCookie ( ) : mixed
리턴 mixed

minutesToLifetime() 보호된 메소드

Takes a minutes parameter (relative to now) and converts it to a lifetime (unix timestamp).
protected minutesToLifetime ( integer $minutes ) : integer
$minutes integer
리턴 integer

put() 공개 메소드

{@inheritDoc}
public put ( $value )

setCookie() 보호된 메소드

Sets a PHP cookie.
protected setCookie ( mixed $value, integer $lifetime, string $path = null, string $domain = null, boolean $secure = null, boolean $httpOnly = null ) : void
$value mixed
$lifetime integer
$path string
$domain string
$secure boolean
$httpOnly boolean
리턴 void

프로퍼티 상세

$options 보호되어 있는 프로퍼티

The cookie options.
protected array $options
리턴 array