yii\db\QueryTrait::offset PHP 메소드

offset() 공개 메소드

Sets the OFFSET part of the query.
public offset ( integer $offset )
$offset integer the offset. Use null or negative value to disable offset.
    public function offset($offset)
    {
        $this->offset = $offset;
        return $this;
    }