PHP 인터페이스 ManaPHP\Http\Session\BagInterface

파일 보기 프로젝트 열기: manaphp/manaphp

공개 메소드들

메소드 설명
destroy ( ) Destroy the session bag
get ( string $property = null, mixed $defaultValue = null ) : mixed Getter of values
has ( string $property ) : boolean Isset property
remove ( string $property ) Unset property
set ( string $property, mixed $value ) Setter of values

메소드 상세

destroy() 공개 메소드

Destroy the session bag
public destroy ( )

get() 공개 메소드

Getter of values
public get ( string $property = null, mixed $defaultValue = null ) : mixed
$property string
$defaultValue mixed
리턴 mixed

has() 공개 메소드

Isset property
public has ( string $property ) : boolean
$property string
리턴 boolean

remove() 공개 메소드

Unset property
public remove ( string $property )
$property string

set() 공개 메소드

Setter of values
public set ( string $property, mixed $value )
$property string
$value mixed