K2hash::dumpKeytable
Prints the k2hash’s hash tables
Description
public bool K2hash::dumpKeytable ([ mixed $output ] )
Prints the k2hash’s hash tables including k2hash headers.
Parameters
- output
Specifies a file stream of data to be written.
Return Values
Returns true on success or false on failure.
Examples
- Example 1 - Prints the k2hash’s hash tables
<?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);
}
?>
The above example will output:
...
Key Index Pointer[29] = Not Allocated
Key Index Pointer[30] = Not Allocated
Key Index Pointer[31] = Not Allocated
}
See Also
- K2hash::dumpElementtable - Prints elements of the k2hash’s hash table elements
- K2hash::dumpFull - Prints the k2hash’s hash tables in details
- K2hash::dumpFullKeytable - Prints details of the k2hash’s hash tables
- K2hash::dumpHead - Prints the k2hash’s headers