K2hdkc::casInit K2hdkc Class K2hdkc::clearSubkeys

K2hdkc::casSet

CASを使ってvalueを保存する

説明

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

パラメータ

戻り値

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

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

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

int(1)

参考

K2hdkc::casInit K2hdkc Class K2hdkc::clearSubkeys