k2hpx_keyq_free k2hash Functions k2hpx_keyq_pop

k2hpx_keyq_handle

K2hKeyQueueハンドルを取得する

説明

mixed k2hpx_keyq_handle ( mixed $handle_res [, bool $is_filo [, stringnull $prefix ]] )

K2hKeyQueue ハンドルを取得します。

パラメータ

戻り値

K2hKeyQueue ハンドル

<?php
$handle = k2hpx_open_mem();
$keyqhandle = k2hpx_keyq_handle($handle, true, "test_queue_");
var_dump($keyqhandle);
k2hpx_keyq_free($keyqhandle);
k2hpx_close($handle);
?>

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

resource(5) of type (k2hkeyqhandle)

参考

k2hpx_keyq_free k2hash Functions k2hpx_keyq_pop