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


PHP MongoCursor::next方法代碼示例

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


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

示例1: next

 /**
  * Next
  *
  * @return mixed
  */
 public function next()
 {
     $this->resource->next();
     $this->currentData = $this->resource->current();
     $this->currentComplete = true;
     $this->position++;
     return $this->currentData;
 }
開發者ID:pasechnik,項目名稱:mongozend,代碼行數:13,代碼來源:Result.php

示例2: row

 /**
  * Returns the document at the specified index as an object
  *
  * @since v1.0.0
  */
 public function row($index = 0, $class = NULL, $as_object = FALSE)
 {
     $size = $this->_cursor->count();
     $this->_cursor->reset();
     $res = array();
     for ($i = 0; $i < $size; $i++) {
         $this->_cursor->next();
         if ($i == $index && $index <= $size) {
             $res = $as_object ? (object) $this->_cursor->current() : $this->_cursor->current();
             break;
         }
     }
     return $res;
 }
開發者ID:AnthemiusGuo,項目名稱:managerproject,代碼行數:19,代碼來源:Cimongo_cursor.php

示例3: next

 /**
  * Iterator: next
  */
 public function next()
 {
     $this->_cursor->next();
 }
開發者ID:andygoo,項目名稱:mongodb-php-odm,代碼行數:7,代碼來源:collection.php

示例4: next

 /**
  * {@inheritdoc}
  */
 public function next()
 {
     $this->mongoCursor->next();
 }
開發者ID:dav-m85,項目名稱:simple-mongo,代碼行數:7,代碼來源:Cursor.php

示例5: getNext

 /**
  * Return the next object to which this cursor points, and advance the cursor
  *
  * @link http://www.php.net/manual/en/mongocursor.getnext.php
  * @throws \MongoConnectionException
  * @throws \MongoCursorTimeoutException
  * @return array|Document Returns the next object
  */
 public function getNext()
 {
     $this->cursor->next();
     return $this->current();
 }
開發者ID:tuneyourserver,項目名稱:components,代碼行數:13,代碼來源:DocumentCursor.php

示例6: next

 /**
  * Advances the pointer
  *
  * @return void
  */
 public function next()
 {
     return $this->cursor->next();
 }
開發者ID:kulobone,項目名稱:mongodb,代碼行數:9,代碼來源:Iterator.php

示例7: next

 /**
  * next.
  */
 public function next()
 {
     $this->logQuery();
     return parent::next();
 }
開發者ID:hybr,項目名稱:jpm,代碼行數:8,代碼來源:LoggableMongoCursor.php

示例8: next

 /**
  * Iterator::next
  */
 public function next()
 {
     $this->myResultCursor->next();
 }
開發者ID:ppetermann,項目名稱:king23,代碼行數:7,代碼來源:Result.php

示例9: next

 /**
  * Iterator next method (used in foreach)
  *
  */
 public function next()
 {
     ++$this->position;
     $this->cursor->next();
 }
開發者ID:irto,項目名稱:neomongo,代碼行數:9,代碼來源:OdmCursor.php

示例10: next

 public function next()
 {
     return parent::next();
 }
開發者ID:igor822,項目名稱:nosqlibr,代碼行數:4,代碼來源:Cursor.php

示例11: next

 /**
  * 遊標下一條記錄
  * @return null 
  */
 public function next()
 {
     return $this->oMongoCursor->next();
 }
開發者ID:diandengs,項目名稱:RechoPHP,代碼行數:8,代碼來源:class.Mumongo.php


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