K2hash::dumpElementtable
Prints elements of the k2hash’s hash table elements
Description
public bool K2hash::dumpElementtable ([ mixed $output ] )
Prints elements of the k2hash hashtable elements including headers, hash tables and sub-hash tables.
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 elements of 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_elementtable.log", 'w');
$k2hash->dumpElementtable($fp);
fclose($fp);
$k2hash->close();
$fp = fopen("/tmp/k2hash_dump_elementtable.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::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
- K2hash::dumpKeytable - Prints the k2hash’s hash tables