K2hash::dumpHead K2hash Class K2hash::enableTransaction

K2hash::dumpKeytable

k2hashのハッシュテーブルを表示する

説明

 public bool K2hash::dumpKeytable ([ mixed $output ] )

k2hashのハッシュテーブルなどを表示します。k2hashのヘッダ、ハッシュテーブルなども含まれます。

パラメータ

戻り値

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

<?php
K2hash::create("/tmp/test_k2hash.k2h");
$k2hash = new K2hash();
$k2hash->openRO("/tmp/test_k2hash.k2h");
$fp = fopen("/tmp/k2hash_dump_keytable.log", 'w');
$k2hash->dumpKeytable($fp);
fclose($fp);
$k2hash->close();

$fp = fopen("/tmp/k2hash_dump_keytable.log", 'r');
if ($fp) {
        while (!feof($fp)) {
                if (($buf = fgets($fp, 4096)) !== false) {
                        echo $buf;
                }
        }
        fclose($fp);
}
?>

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

...
    Key Index Pointer[29] = Not Allocated
    Key Index Pointer[30] = Not Allocated
    Key Index Pointer[31] = Not Allocated
  }

参考

K2hash::dumpHead K2hash Class K2hash::enableTransaction