K2hKeyQueue::push
Adds a key/value pair to the K2hKeyQueue
Description
public bool K2hKeyQueue::push ( string $key , string $value [, string $pass [, int $expire ]] )
Adds a key/value pair to the K2hKeyQueue.
Parameters
- key
Specifies the key. - value
Specifies the value. - pass
Specifies the password to encrypt the value. - expire
Specifies the seconds to expire the value.
Return Values
Returns true on success or false on failure.
Examples
- Example 1 - Gets an element from a K2hKeyQueue instance
<?php
$handle = k2hpx_open_mem();
$k2hkeyqueue = new K2hKeyQueue($handle, true, "test_queue_");
var_dump($k2hkeyqueue->push("test_queue_key", "test_queue_value"));
var_dump($k2hkeyqueue->pop());
unset($k2hkeyqueue);
k2hpx_close($handle);
?>
The above example will output:
bool(true)
array(2) {
[0]=>
string(14) "test_queue_key"
[1]=>
string(16) "test_queue_value"
}
See Also
- K2hKeyQueue::pop - Removes and returns the removed element from the K2hKeyQueue
- K2hKeyQueue::read - Returns a key/value pair from the K2hKeyQueue
- K2hKeyQueue::remove - Removes a key/value pair from the K2hKeyQueue