K2hdkc::keyQueueGet K2hdkc Class K2hdkc::remove

K2hdkc::keyQueuePut

キー/値形式のデータをキューに保存する

説明

    public function keyQueuePut(
        string $prefix,
        string $key,
        string $val,
        bool $is_fifo = true,
        bool $is_check_attr = true,
        string $password = null,
        int $expiration_duration = 0): bool {}

パラメータ

戻り値

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

$ php -r '
> $k2hdkc = new K2hdkc("./tests/slave.ini");
> var_dump($k2hdkc->keyQueuePut("test", "key", "value")); 
> var_dump($k2hdkc->keyQueueGet("test")); 
> '

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

bool(true)
array(1) {
  ["key"]=>
  string(5) "value"
}

参考

K2hdkc::keyQueueGet K2hdkc Class K2hdkc::remove