phprs\Request::offsetGet PHP Method

offsetGet() public method

(non-PHPdoc)
See also: ArrayAccess::offsetGet()
public offsetGet ( $offset )
    public function offsetGet($offset)
    {
        $res = $this->data->get($offset);
        if (!isset($res[0])) {
            trigger_error("{$offset} not exist");
        }
        return $res[0];
    }