當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Builder::offset方法代碼示例

本文整理匯總了PHP中Illuminate\Database\Eloquent\Builder::offset方法的典型用法代碼示例。如果您正苦於以下問題:PHP Builder::offset方法的具體用法?PHP Builder::offset怎麽用?PHP Builder::offset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Database\Eloquent\Builder的用法示例。


在下文中一共展示了Builder::offset方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: applyOffset

 /**
  * @param $value
  * @return $this
  */
 public function applyOffset($value)
 {
     /**
      * Save to conditons.
      */
     $this->addCondition('offset', $value);
     $this->model = $this->model->offset($value);
     return $this;
 }
開發者ID:aaronjan,項目名稱:housekeeper,代碼行數:13,代碼來源:Plan.php

示例2: build

 public function build()
 {
     $request = $this->request;
     $needle = $request->needle();
     if ($needle && $request->searchable) {
         $this->qb->where(function ($subQB) use($needle, $request) {
             foreach ($request->searchable as $column) {
                 $subQB->orWhere($column, 'LIKE', "%{$needle}%");
             }
         });
     }
     $request->modifyQuery($this->qb);
     $this->qb->orderBy($request->orderBy(), $request->sortBy());
     $count = $this->qb->count();
     $this->qb->take($request->perPage());
     $this->qb->offset($request->offset());
     $paginator = new LengthAwarePaginator($request->items($this->qb), $count, $request->perPage(), $request->page());
     $paginator->request = $request;
     $paginator->appends($request->query());
     $this->paginator = $paginator;
 }
開發者ID:ohiocms,項目名稱:core,代碼行數:21,代碼來源:BaseLengthAwarePaginator.php

示例3: forPage

 /**
  * @param $page
  * @param $itemsPerPage
  *
  * @return $this
  */
 public function forPage($page, $itemsPerPage)
 {
     $this->specificationQuery->offset(($page - 1) * $itemsPerPage)->limit($itemsPerPage);
     return $this;
 }
開發者ID:middleout,項目名稱:doplio,代碼行數:11,代碼來源:AbstractRepository.php

示例4: apply

 /**
  * @param Builder $table
  *
  * @return Builder
  */
 public function apply(Builder $table)
 {
     return $table->offset(($this->currentPage - 1) * $this->itemsPerPage)->limit($this->itemsPerPage);
 }
開發者ID:middleout,項目名稱:doplio,代碼行數:9,代碼來源:ItemsPerPage.php


注:本文中的Illuminate\Database\Eloquent\Builder::offset方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。