当前位置: 首页>>代码示例>>PHP>>正文


PHP MongoCursor::addOption方法代码示例

本文整理汇总了PHP中MongoCursor::addOption方法的典型用法代码示例。如果您正苦于以下问题:PHP MongoCursor::addOption方法的具体用法?PHP MongoCursor::addOption怎么用?PHP MongoCursor::addOption使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MongoCursor的用法示例。


在下文中一共展示了MongoCursor::addOption方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: recreate

 /**
  * Recreates the internal MongoCursor.
  */
 public function recreate()
 {
     $this->mongoCursor = $this->collection->getMongoCollection()->find($this->query, $this->fields);
     if ($this->hint !== null) {
         $this->mongoCursor->hint($this->hint);
     }
     if ($this->immortal !== null) {
         $this->mongoCursor->immortal($this->immortal);
     }
     foreach ($this->options as $key => $value) {
         $this->mongoCursor->addOption($key, $value);
     }
     if ($this->batchSize !== null) {
         $this->mongoCursor->batchSize($this->batchSize);
     }
     if ($this->limit !== null) {
         $this->mongoCursor->limit($this->limit);
     }
     if ($this->maxTimeMS !== null) {
         $this->mongoCursor->maxTimeMS($this->maxTimeMS);
     }
     if ($this->skip !== null) {
         $this->mongoCursor->skip($this->skip);
     }
     if ($this->slaveOkay !== null) {
         $this->setMongoCursorSlaveOkay($this->slaveOkay);
     }
     // Set read preferences after slaveOkay, since they may be more specific
     if ($this->readPreference !== null) {
         if ($this->readPreferenceTags !== null) {
             $this->mongoCursor->setReadPreference($this->readPreference, $this->readPreferenceTags);
         } else {
             $this->mongoCursor->setReadPreference($this->readPreference);
         }
     }
     if ($this->snapshot) {
         $this->mongoCursor->snapshot();
     }
     if ($this->sort !== null) {
         $this->mongoCursor->sort($this->sort);
     }
     if ($this->tailable !== null) {
         $this->mongoCursor->tailable($this->tailable);
     }
     if ($this->timeout !== null) {
         $this->mongoCursor->timeout($this->timeout);
     }
 }
开发者ID:malukenho,项目名称:mongodb,代码行数:51,代码来源:Cursor.php

示例2: maxTimeMS

 /**
  * Wrapper method for MongoCursor::maxTimeMS().
  *
  * @see http://php.net/manual/en/mongocursor.maxtimems.php
  * @param integer $ms
  * @return self
  */
 public function maxTimeMS($ms)
 {
     $this->maxTimeMS = (int) $ms;
     $this->mongoCursor->addOption('$maxTimeMS', (int) $ms);
     return $this;
 }
开发者ID:ne0h12,项目名称:mongodb,代码行数:13,代码来源:Cursor.php

示例3: addOption

 public function addOption($key, $value)
 {
     parent::addOption($key, $value);
     return $this;
 }
开发者ID:lisong,项目名称:incubator,代码行数:5,代码来源:Cursor.php

示例4: addOption

 /**
  * 添加选项
  * @param String $key
  * @param String $value
  * @return muMongoCursor
  */
 public function addOption($key, $value)
 {
     $this->oMongoCursor->addOption($key, $value);
     return $this;
 }
开发者ID:diandengs,项目名称:RechoPHP,代码行数:11,代码来源:class.Mumongo.php


注:本文中的MongoCursor::addOption方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。