K2hdkc::addSubkey K2hdkc Class K2hdkc::casGet

K2hdkc::casDecrement

CASを使ってvalueをひとつ減らす

説明

    public function casDecrement(
        string $key,
        string $password = null,
        int $expiration_duration = 0): bool {}

パラメータ

戻り値

成功時は、 true 失敗時は、 falseを返します。

php -r '
$handle = new K2hdkc("./tests/slave.ini");
$handle->casInit("key", 1);
$handle->casDecrement("key");
var_dump($handle->casGet("key"));
$handle->close();
'

上の例の出力は以下となります。

int(0)

参考

K2hdkc::addSubkey K2hdkc Class K2hdkc::casGet