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


PHP EMongoDocument::populateRecord方法代碼示例

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


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

示例1: current

 /**
  * Return the current element
  * @return EMongoDocument
  * @since v1.3.4
  */
 public function current()
 {
     $document = $this->_cursor->current();
     if (empty($document)) {
         return $document;
     }
     return $this->_model->populateRecord($document);
 }
開發者ID:nmalservet,項目名稱:biocap,代碼行數:13,代碼來源:EMongoCursor.php

示例2: current

 /**
  * Gets the active record for the current row
  * @return EMongoDocument|mixed
  * @throws EMongoException
  */
 public function current()
 {
     if (!$this->run) {
         if ($this->model->getDbConnection()->queryCachingCount > 0 && $this->model->getDbConnection()->queryCachingDuration > 0 && $this->model->getDbConnection()->queryCacheID !== false && ($cache = Yii::app()->getComponent($this->model->getDbConnection()->queryCacheID)) !== null) {
             $this->model->getDbConnection()->queryCachingCount--;
             $info = $this->cursor()->info();
             $cacheKey = 'yii:dbquery' . $this->model->getDbConnection()->server . ':' . $this->model->getDbConnection()->db . ':' . $this->model->getDbConnection()->getSerialisedQuery(is_array($info['query']) && isset($info['query']['$query']) ? $info['query']['$query'] : array(), $info['fields'], is_array($info['query']) && isset($info['query']['$orderby']) ? $info['query']['$orderby'] : array(), $info['skip'], $info['limit']) . ':' . $this->model->getCollection();
             if (($result = $cache->get($cacheKey)) !== false) {
                 Yii::trace('Query result found in cache', 'extensions.MongoYii.EMongoDocument');
                 $this->cachedArray = $result;
                 $this->fromCache = true;
             } else {
                 $this->cachedArray = iterator_to_array($this->cursor);
             }
         }
         if (isset($cache, $cacheKey)) {
             $cache->set($cacheKey, $this->cachedArray, $this->model->getDbConnection()->queryCachingDuration, $this->model->getDbConnection()->queryCachingDependency);
             $this->fromCache = true;
         }
         $this->run = true;
     }
     if ($this->model === null) {
         throw new EMongoException(Yii::t('yii', 'The MongoCursor must have a model'));
     }
     if ($this->fromCache) {
         return $this->current = $this->model->populateRecord(current($this->cachedArray), true, $this->partial);
     }
     return $this->current = $this->model->populateRecord($this->cursor()->current(), true, $this->partial);
 }
開發者ID:pvassiliou,項目名稱:MongoYii,代碼行數:34,代碼來源:EMongoCursor.php

示例3: current

 /**
  * Gets the active record for the current row
  * @return EMongoDocument|mixed
  * @throws EMongoException
  */
 public function current()
 {
     if ($this->model === null) {
         throw new EMongoException(Yii::t('yii', 'The MongoCursor must have a model'));
     }
     return $this->current = $this->model->populateRecord($this->cursor()->current(), true, $this->partial);
 }
開發者ID:kl0428,項目名稱:admin,代碼行數:12,代碼來源:EMongoCursor.php

示例4: current

 /**
  * Gets the active record for the current row
  * @return EMongoDocument|mixed
  * @throws EMongoException
  */
 public function current()
 {
     if ($this->model === null) {
         return $this->current = $this->cursor->current();
     } else {
         return $this->current = $this->model->populateRecord($this->cursor->current(), true, $this->partial);
     }
 }
開發者ID:sammaye,項目名稱:mongoyii-php7,代碼行數:13,代碼來源:Cursor.php

示例5: offsetExists

 /**
  * Returns whether there is an element at the specified offset.
  * This method is required by the interface ArrayAccess.
  * @param mixed $offset the offset to check on
  * @return boolean
  */
 public function offsetExists($offset)
 {
     if (!isset($this->_array)) {
         foreach ($this->_cursor as $document) {
             $this->offsetSet(null, $this->_model->populateRecord($document));
         }
     }
     if (isset($this->_array[$offset])) {
         return true;
     } else {
         return false;
     }
 }
開發者ID:phiphi1992,項目名稱:alongaydep,代碼行數:19,代碼來源:EMongoCursor.php

示例6: populateRecord

 /**
  * Creates an EMongoGridFS with the given attributes.
  * This method is internally used by the find methods.
  * @param MongoGridFSFile $document mongo gridFSFile
  * @param array $attributes attribute values (column name=>column value)
  * @param boolean $callAfterFind whether to call {@link afterFind} after the record is populated.
  * This parameter is added in version 1.0.3.
  * @return EMongoDocument the newly created document. The class of the object is the same as the model class.
  * Null is returned if the input data is false.
  * @since v1.3
  */
 public function populateRecord($document, $callAfterFind = true)
 {
     Yii::trace('Trace: ' . __CLASS__ . '::' . __FUNCTION__ . '()', 'ext.MongoDb.EMongoGridFS');
     if ($document instanceof MongoGridFSFile) {
         $model = parent::populateRecord($document->file, $callAfterFind);
         $model->_gridFSFile = $document;
         return $model;
     } else {
         return parent::populateRecord($document, $callAfterFind);
     }
 }
開發者ID:phiphi1992,項目名稱:alongaydep,代碼行數:22,代碼來源:EMongoGridFS.php


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