k2hpx_da_get_handle_write
Gets the k2hash direct access file handle with write only mode
Description
mixed k2hpx_da_get_handle_write ( mixed $handle_res , string $key )
Gets the k2hash direct access file handle with write only mode.
Note
The k2hash direct access handle is a handler to provide quick access to the specific part of large data using offset.
Parameters
- handle_res
Specifies the k2hash file handle that k2hpx_open returns. - key
Specifies the key to have access.
Return Values
Returns the k2hash direct access file handle with write-only mode.
Examples
- Example 1 - Gets the k2hash direct access file handle
<?php
$handle = k2hpx_open_mem();
k2hpx_set_value($handle, "test", "value");
$dahandle = k2hpx_da_get_handle_write($handle, "test");
var_dump($dahandle);
k2hpx_da_free($dahandle);
k2hpx_close($handle);
?>
The above example will output:
resource(5) of type (k2hdahandle)
See Also
- k2hpx_da_free - Frees resources of k2hash direct access handle
- k2hpx_da_get_handle_read - Reads data
- k2hpx_da_get_handle_rw - Gets the k2h direct access file handle with read-write only mode
- k2hpx_da_get_handle - Gets the k2h direct access file handle
- k2hpx_da_get_length - Gets the data length
- k2hpx_da_get_offset - Gets the k2h direct access file offset with read-write access mode
- k2hpx_da_get_read_offset - Gets the k2h direct access file offset with read access mode
- k2hpx_da_get_value_to_file - Reads value using the offset and write it to the file
- k2hpx_da_get_value - Reads value using the offset
- k2hpx_da_get_write_offset - Gets the k2h direct access file offset with write access mode
- k2hpx_da_set_offset - Sets the offset to modify the data
- k2hpx_da_set_read_offset - Sets the offset to read the data
- k2hpx_da_set_value_from_file - Sets value using the offset reading data from the file with length
- k2hpx_da_set_value - Sets value
- k2hpx_da_set_write_offset - Sets value using the offset