k2hpx_find_get_subkeys
キーに紐づけられたキーを探索する
説明
array k2hpx_find_get_subkeys ( mixed $findhandle_res )
キーに紐づけられたキー(サブキー)を探索します。
パラメータ
- findhandle_res
k2hash キー探索用ハンドル( k2hpx_find_first 関数の戻り値)。
戻り値
探索結果のキーに紐づけられたキー(サブキー)
例
- 例 1 - 探索結果のキーに紐づけられたキー(サブキー) を取得する
<?php
$handle = k2hpx_open_mem();
k2hpx_set_value($handle, "test1", "value1");
k2hpx_set_value($handle, "subkey1", "sub-value1");
k2hpx_add_subkey($handle, "test1", "subkey1");
$findhandle = k2hpx_find_first($handle);
var_dump($findhandle);
var_dump(k2hpx_find_get_subkeys($findhandle));
k2hpx_find_free($findhandle);
k2hpx_close($handle);
?>
上の例の出力は以下となります。
resource(5) of type (k2hfindhandle)
array(1) {
[0]=>
string(7) "subkey1"
}
参考
- k2hpx_find_first - キー探索用ハンドルを取得する
- k2hpx_find_free - キー探索用ハンドルを解放する
- k2hpx_find_get_key - キーを探索する
- k2hpx_find_get_value - キーを探索して値を取得する
- k2hpx_find_next - キー探索用ハンドルを次のキーに移動する