PHP 인터페이스 ManaPHP\CounterInterface

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

공개 메소드들

메소드 설명
decrement ( string $type, string $id, integer $step = 1 ) : integer Decrements the value of key by a given step.
delete ( string $type, string $id ) : void Deletes the key
get ( string $type, string $id ) : integer
increment ( string $type, string $id, integer $step = 1 ) : integer Increments the value of key by a given step.

메소드 상세

decrement() 공개 메소드

Decrements the value of key by a given step.
public decrement ( string $type, string $id, integer $step = 1 ) : integer
$type string
$id string
$step integer
리턴 integer the new value

delete() 공개 메소드

Deletes the key
public delete ( string $type, string $id ) : void
$type string
$id string
리턴 void

get() 공개 메소드

public get ( string $type, string $id ) : integer
$type string
$id string
리턴 integer

increment() 공개 메소드

Increments the value of key by a given step.
public increment ( string $type, string $id, integer $step = 1 ) : integer
$type string
$id string
$step integer
리턴 integer the new value