当前位置: 首页>>代码示例>>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;未经允许,请勿转载。