PHP 인터페이스 Pantheon\Terminus\DataStore\DataStoreInterface

파일 보기 프로젝트 열기: pantheon-systems/terminus 0 사용 예제들

공개 메소드들

메소드 설명
get ( string $key ) : mixed Reads retrieves data from the store
has ( string $key ) : boolean Checks if a key is in the store
keys ( ) : array Return a list of all keys in the store.
remove ( string $key ) Remove value from the store
set ( string $key, mixed $data ) Saves a value with the given key

메소드 상세

get() 공개 메소드

Reads retrieves data from the store
public get ( string $key ) : mixed
$key string A key
리턴 mixed The value fpr the given key or null.

has() 공개 메소드

Checks if a key is in the store
public has ( string $key ) : boolean
$key string A key
리턴 boolean Whether a value exists with the given key

keys() 공개 메소드

Return a list of all keys in the store.
public keys ( ) : array
리턴 array A list of keys

remove() 공개 메소드

Remove value from the store
public remove ( string $key )
$key string A key

set() 공개 메소드

Saves a value with the given key
public set ( string $key, mixed $data )
$key string A key
$data mixed Data to save to the store