k2hpx_find_first k2hash Functions k2hpx_find_get_key

k2hpx_find_free

キー探索用ハンドルを解放する

説明

bool k2hpx_find_free ( mixed $findhandle_res )

キー探索用ハンドルを解放します。

パラメータ

戻り値

成功した場合に true を、失敗した場合に false を返します。

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

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

resource(5) of type (k2hfindhandle)

参考

k2hpx_find_first k2hash Functions k2hpx_find_get_key