Set and get method for query's offset, i.e. which records to get

Parameters

  • integer $offset

Returns

integer

Source

						public function offset($offset = null) {
		if ($offset !== null) {
			$this->_config['offset'] = intval($offset);
			return $this;
		}
		return $this->_config['offset'];
	}