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


PHP Query::count方法代码示例

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


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

示例1: deletePOST

 /**
  * Login and submit a POST request to a $url that is expected to delete a given record,
  * and then verify its removal.
  *
  * @param int $user_id The user to login as.
  * @param String $url The url to send the request to.  Be sure to include a trailing /.
  * @param int $delete_id The id of the record to delete.
  * @param String $redirect_url The url to redirect to, after the deletion.
  * @param \Cake\ORM\Table $table The table to delete from.
  */
 protected function deletePOST($user_id, $url, $delete_id, $redirect_url, $table)
 {
     $this->fakeLogin($user_id);
     $this->post($url . $delete_id);
     $this->assertResponseSuccess();
     // 2xx, 3xx
     $this->assertRedirect($redirect_url);
     // Now verify that the record no longer exists
     $query = new Query(ConnectionManager::get('test'), $table);
     $query->find('all')->where(['id' => $delete_id]);
     $this->assertEquals(0, $query->count());
 }
开发者ID:bostontrader,项目名称:duncemaster,代码行数:22,代码来源:DMIntegrationTestCase.php

示例2: beforeFind

 /**
  * Attaches comments to each entity on find operation.
  *
  * @param \Cake\Event\Event $event The event that was triggered
  * @param \Cake\ORM\Query $query The query object
  * @param array $options Additional options as an array
  * @param bool $primary Whether is find is a primary query or not
  * @return void
  */
 public function beforeFind(Event $event, $query, $options, $primary)
 {
     if ($this->_enabled && $query->count() > 0) {
         $pk = $this->_table->primaryKey();
         $tableAlias = Inflector::underscore($this->_table->alias());
         $query->contain(['Comments' => function ($query) {
             return $query->find('threaded')->contain(['Users'])->order($this->config('order'));
         }]);
         if ($this->config('count') || isset($options['comments_count']) && $options['comments_count'] === true) {
             $query->formatResults(function ($results) use($pk, $tableAlias) {
                 return $results->map(function ($entity) use($pk, $tableAlias) {
                     $entityId = $entity->{$pk};
                     $count = TableRegistry::get('Comment.Comments')->find()->where(['entity_id' => $entityId, 'table_alias' => $tableAlias])->count();
                     $entity->set('comments_count', $count);
                     return $entity;
                 });
             });
         }
     }
 }
开发者ID:quickapps-plugins,项目名称:comment,代码行数:29,代码来源:CommentableBehavior.php

示例3: preparePaging

 /**
  * Prepare CakePHP paging
  *
  * @param Request $request DataTable request
  */
 protected function preparePaging(Request $request)
 {
     self::$countBeforePaging = $this->query->count();
     $this->query->limit($request->getLength());
     $this->query->offset($request->getStart());
 }
开发者ID:atkrad,项目名称:data-tables,代码行数:11,代码来源:CakePHP.php


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