k2hpx_find_free k2hash Functions k2hpx_find_get_subkeys

k2hpx_find_get_key

キーを探索する

説明

string k2hpx_find_get_key ( mixed $findhandle_res )

キーを探索します。

パラメータ

戻り値

探索結果のキー

<?php
$handle = k2hpx_open_mem();
k2hpx_set_value($handle, "test1", "value1");
$findhandle = k2hpx_find_first($handle);
var_dump($findhandle);
var_dump(k2hpx_find_get_key($findhandle));
k2hpx_find_free($findhandle);
k2hpx_close($handle);
?>

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

resource(5) of type (k2hfindhandle)
string(5) "test1"

参考

k2hpx_find_free k2hash Functions k2hpx_find_get_subkeys