phprs\Request::offsetGet PHP Метод

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

(non-PHPdoc)
См. также: 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];
    }