K2hash::dumpElementtable K2hash Class K2hash::dumpFullKeytable

K2hash::dumpFull

k2hashのハッシュテーブル内部のデータなどを表示する

説明

 public bool K2hash::dumpFull ([ 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_full.log", 'w');
$k2hash->dumpFull($fp);
fclose($fp);
$k2hash->close();

$fp = fopen("/tmp/k2hash_dump_full.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::dumpElementtable K2hash Class K2hash::dumpFullKeytable