Habari\SuperGlobal::offsetSet PHP Метод

offsetSet() публичный Метод

Set the value of the array, clear caches for that index
public offsetSet ( mixed $index, mixed $value )
$index mixed The array index
$value mixed Tha value to store
    public function offsetSet($index, $value)
    {
        unset($this->values[$index]);
        unset($this->raw_values[$index]);
        parent::offsetSet($index, $value);
    }