1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62:
<?php
namespace Dropbox;
/**
* A class that gives get/put/clear access to a single entry in an array.
*/
class ArrayEntryStore implements ValueStore
{
/** @var array */
private $array;
/** @var mixed */
private $key;
/**
* Constructor.
*
* @param array $array
* The array that we'll be accessing.
*
* @param mixed $key
* The key for the array element we'll be accessing.
*/
function __construct(&$array, $key)
{
$this->array = &$array;
$this->key = $key;
}
/**
* Returns the entry's current value or `null` if nothing is set.
*
* @return object
*/
function get()
{
if (isset($this->array[$this->key])) {
return $this->array[$this->key];
} else {
return null;
}
}
/**
* Set the array entry to the given value.
*
* @param object $value
*/
function set($value)
{
$this->array[$this->key] = $value;
}
/**
* Clear the entry.
*/
function clear()
{
unset($this->array[$this->key]);
}
}