K2hKeyQueue::isEmpty K2hKeyQueue Class K2hKeyQueue::push

K2hKeyQueue::pop

Removes and returns the removed element from the K2hKeyQueue

Description

public arrayfalseK2hKeyQueue::pop ([ string $pass ] )

Removes and gets the removed element from the K2hKeyQueue.

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->pop());
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::isEmpty K2hKeyQueue Class K2hKeyQueue::push