K2hKeyQueue::push K2hKeyQueue Class K2hKeyQueue::remove

K2hKeyQueue::read

Returns a key/value pair from the K2hKeyQueue

Description

public arrayfalseK2hKeyQueue::read ([ int $pos [, string $pass ]] )

Returns a key/value pair from the K2hKeyQueue.

Note

This operation will not remove the element from the K2hKeyQueue. Use K2hKeyQueue::pop to removes and returns the element instead.

Parameters

Return Values

Returns a key/value pair.

Examples

<?php
$handle = k2hpx_open_mem();
$k2hkeyqueue = new K2hKeyQueue($handle, true, "test_queue_");
$k2hkeyqueue->push("test_queue_key", "test_queue_value");
var_dump($k2hkeyqueue->read(0));
unset($k2hkeyqueue);
k2hpx_close($handle);
?>

The above example will output:

array(2) {
  [0]=>
  string(14) "test_queue_key"
  [1]=>
  string(16) "test_queue_value"
}

See Also

K2hKeyQueue::push K2hKeyQueue Class K2hKeyQueue::remove