PHP 인터페이스 Pop\Cache\Adapter\AdapterInterface

저자: Nick Sagona, III ([email protected])
파일 보기 프로젝트 열기: nicksagona/PopPHP 0 사용 예제들

공개 메소드들

메소드 설명
clear ( ) : void Method to clear all stored values from cache.
load ( string $id, string $time ) : mixed Method to load a value from cache.
remove ( string $id ) : void Method to delete a value in cache.
save ( string $id, mixed $value, string $time ) : void Method to save a value to cache.

메소드 상세

clear() 공개 메소드

Method to clear all stored values from cache.
public clear ( ) : void
리턴 void

load() 공개 메소드

Method to load a value from cache.
public load ( string $id, string $time ) : mixed
$id string
$time string
리턴 mixed

remove() 공개 메소드

Method to delete a value in cache.
public remove ( string $id ) : void
$id string
리턴 void

save() 공개 메소드

Method to save a value to cache.
public save ( string $id, mixed $value, string $time ) : void
$id string
$value mixed
$time string
리턴 void