k2hpx_da_get_value k2hash Functions k2hpx_da_set_offset

k2hpx_da_get_write_offset

Gets the k2hash direct access file offset with write access mode

Description

int k2hpx_da_get_write_offset ( mixed $dahandle_res )

Gets the k2hash direct access file offset with write access mode.

Note

The k2hash direct access handle is a handler to provide quick access to the specific part of large data using offset.

Parameters

Return Values

Returns the k2hash direct access file offset with write access mode.

Examples

<?php
$handle = k2hpx_open_mem();
k2hpx_set_value($handle, "test", "value");
$dahandle = k2hpx_da_get_handle_rw($handle, "test");
var_dump(k2hpx_da_get_write_offset($dahandle));
k2hpx_da_free($dahandle);
k2hpx_close($handle);
?>

The above example will output:

int(0)

See Also

k2hpx_da_get_value k2hash Functions k2hpx_da_set_offset