PHP 클래스 Prado\Web\THttpCookie

A THttpCookie instance stores a single cookie, including the cookie name, value, domain, path, expire, and secure.
부터: 3.0
저자: Qiang Xue ([email protected])
상속: extends Prado\TComponent
파일 보기 프로젝트 열기: pradosoft/prado 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( $name, $value ) Constructor.
getDomain ( ) : string
getExpire ( ) : integer
getHttpOnly ( ) : boolean
getName ( ) : string
getPath ( ) : string
getSecure ( ) : boolean
getValue ( ) : string
setDomain ( $value )
setExpire ( $value )
setHttpOnly ( boolean $value )
setName ( $value )
setPath ( $value )
setSecure ( $value )
setValue ( $value )

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( $name, $value )

getDomain() 공개 메소드

public getDomain ( ) : string
리턴 string the domain to associate the cookie with

getExpire() 공개 메소드

public getExpire ( ) : integer
리턴 integer the time the cookie expires. This is a Unix timestamp so is in number of seconds since the epoch.

getHttpOnly() 공개 메소드

public getHttpOnly ( ) : boolean
리턴 boolean if true the cookie value will be unavailable to JavaScript

getName() 공개 메소드

public getName ( ) : string
리턴 string the name of the cookie

getPath() 공개 메소드

public getPath ( ) : string
리턴 string the path on the server in which the cookie will be available on, default is '/'

getSecure() 공개 메소드

public getSecure ( ) : boolean
리턴 boolean whether the cookie should only be transmitted over a secure HTTPS connection

getValue() 공개 메소드

public getValue ( ) : string
리턴 string the value of the cookie

setDomain() 공개 메소드

public setDomain ( $value )

setExpire() 공개 메소드

public setExpire ( $value )

setHttpOnly() 공개 메소드

public setHttpOnly ( boolean $value )
$value boolean if true the cookie value will be unavailable to JavaScript

setName() 공개 메소드

public setName ( $value )

setPath() 공개 메소드

public setPath ( $value )

setSecure() 공개 메소드

public setSecure ( $value )

setValue() 공개 메소드

public setValue ( $value )