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


PHP MongoCollection::getCollectionName方法代码示例

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


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

示例1: create

 /**
  * Indicate that the table needs to be created.
  *
  * @return bool
  */
 public function create()
 {
     $collection = $this->collection->getCollectionName();
     $db = $this->connection->getMongoDB();
     // Ensure the collection is created.
     $db->createCollection($collection);
 }
开发者ID:mean-cj,项目名称:laravel-mongodb,代码行数:12,代码来源:Blueprint.php

示例2: generateCacheKey

 /**
  * Generate the unique cache key for the current query.
  *
  * @return string
  */
 public function generateCacheKey()
 {
     $key = ['connection' => $this->collection->getDatabaseName(), 'collection' => $this->collection->getCollectionName(), 'wheres' => $this->wheres, 'columns' => $this->columns, 'groups' => $this->groups, 'orders' => $this->orders, 'offset' => $this->offset, 'limit' => $this->limit, 'aggregate' => $this->aggregate];
     return md5(serialize(array_values($key)));
 }
开发者ID:mean-cj,项目名称:laravel-mongodb,代码行数:10,代码来源:Builder.php


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