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


PHP Selection::limit方法代碼示例

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


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

示例1: getData

 /**
  * @param int $limit
  * @param int $offset
  * @return array
  */
 public function getData($limit = NULL, $offset = NULL)
 {
     if ($limit !== NULL) {
         $this->source->limit($limit, $offset);
     }
     return $this->source->fetchAll();
 }
開發者ID:WebChemistry,項目名稱:filter,代碼行數:12,代碼來源:NetteDataSource.php

示例2: appendLimit

 static function appendLimit(Nette\Database\Table\Selection &$query, $limit = NULL, $offset = NULL)
 {
     if (!is_null($limit)) {
         $query->limit($limit, $offset);
     }
     return $query;
 }
開發者ID:trejjam,項目名稱:utils,代碼行數:7,代碼來源:BaseQuery.php

示例3: render

 /** Render funkcia pre vypisanie odkazu na clanok 
  * @see Nette\Application\Control#render()
  */
 public function render()
 {
     if (count($this->dokumenty)) {
         //Ak nieco mam, tak najdem nahodny
         $obrazky = $this->dokumenty->limit(1, rand(0, count($this->dokumenty) - 1))->fetch();
         $alt = $obrazky->popis;
         $src = $obrazky->subor;
     } else {
         $alt = $this->texty["notFound"];
         $src = "www/images/otaznik.png";
     }
     $this->template->setFile(__DIR__ . '/NahodnaFotka.latte');
     $this->template->h4 = $this->texty["h4"];
     $this->template->alt = $alt;
     $this->template->src = $src;
     $this->template->render();
 }
開發者ID:petak23,項目名稱:echo-msz,代碼行數:20,代碼來源:NahodnaFotka.php

示例4: reduce

 /**
  * Reduce the result starting from $start to have $count rows
  *
  * @param int the number of results to obtain
  * @param int the offset
  * @return IDataSource (fluent)
  * @throws \OutOfRangeException
  */
 public function reduce($count, $start = 0)
 {
     // Delibearately skipping check agains count($this)
     if ($count === NULL) {
         $count = 0;
     }
     if ($start === NULL) {
         $start = 0;
     }
     if ($start < 0 || $count < 0) {
         throw new \OutOfRangeException();
     }
     $this->selection->limit($count, $start);
     return $this;
 }
開發者ID:lohini,項目名稱:cf,代碼行數:23,代碼來源:DB.php

示例5: limit

 /**
  * @param int $offset
  * @param int $limit
  */
 public function limit($offset, $limit)
 {
     $this->selection->limit($limit, $offset);
 }
開發者ID:cujan,項目名稱:vcelyweb,代碼行數:8,代碼來源:NetteDatabase.php

示例6: limit

 /**
  * Apply limit and offset on data
  * @param int $offset
  * @param int $limit
  * @return static
  */
 public function limit($offset, $limit)
 {
     $this->data = $this->data_source->limit($limit, $offset)->fetchAll();
     return $this;
 }
開發者ID:ublaboo,項目名稱:datagrid,代碼行數:11,代碼來源:NetteDatabaseTableDataSource.php

示例7: limit

 /**
  * Sets limit clause.
  * @param int $limit
  * @param int $offset
  * @return self
  */
 public function limit($limit, $offset = null)
 {
     $this->selection->limit($limit, $offset);
     return $this;
 }
開發者ID:jkrecek,項目名稱:nette-database-model,代碼行數:11,代碼來源:StoredCollection.php

示例8: limit

 /**
  * Limit data
  * @param int $limit
  * @param int $offset
  */
 public function limit($limit, $offset)
 {
     $this->table->limit($limit, $offset);
 }
開發者ID:drahak,項目名稱:tables,代碼行數:9,代碼來源:DefaultDataSource.php

示例9: limit

 /**
  * @param  int $limit
  * @param  int $offset
  * @return EntityCollection
  */
 public function limit($limit, $offset = NULL)
 {
     $this->selection->limit($limit, $offset);
     $this->invalidate();
     return $this;
 }
開發者ID:uestla,項目名稱:yetorm,代碼行數:11,代碼來源:EntityCollection.php

示例10: addPaginator

 /**
  * @param Selection $out
  * @param Paginator $paginator
  * @return Selection
  */
 protected function addPaginator($out, Paginator $paginator)
 {
     $paginator->setItemsPerPage($this->itemsPerPage);
     $paginator->setItemCount($out->count());
     $out->limit($paginator->itemsPerPage, $paginator->offset);
     return $out;
 }
開發者ID:jandlouhy,項目名稱:tabletools,代碼行數:12,代碼來源:Repository.php


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