k2hpx_q_free k2hash Functions k2hpx_q_pop

k2hpx_q_handle

K2hQueueハンドルを取得する

説明

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

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

パラメータ

戻り値

K2hQueueハンドル

<?php
$handle = k2hpx_open_mem();
$qhandle = k2hpx_q_handle($handle, true, "test_queue_");
var_dump($qhandle);
k2hpx_q_free($qhandle);
k2hpx_close($handle);
?>

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

resource(5) of type (k2hqhandle)

参考

k2hpx_q_free k2hash Functions k2hpx_q_pop