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


PHP dbeav_model::count方法代碼示例

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


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

示例1: count

 /**
  * 記錄數.
  */
 public function count($filter = null)
 {
     if ($filter['node_id'] > 0) {
         $filter['node_id'] = app::get('content')->model('article_nodes')->get_childrens_id($filter['node_id']);
     }
     return parent::count($filter);
 }
開發者ID:yindonghai,項目名稱:msk.com,代碼行數:10,代碼來源:indexs.php

示例2: getSpecialList

 /**
  * 獲得專輯列表
  * 
  * @param   array   $param          參數
  * @return  array
  */
 function getSpecialList($param = array())
 {
     $list = array();
     $filter = $param['filter'];
     $fields = $param['fields'] ? $param['fields'] : '*';
     $limit = intval($param['limit']);
     $limit = $limit > 0 ? $limit : 20;
     $page = intval($param['page']);
     $page = $page > 0 ? $page : 1;
     $offset = ($page - 1) * $limit;
     $orderby = $param['orderby'] ? $param['orderby'] : 'addtime DESC';
     $count = parent::count($filter);
     if ($count) {
         $info = parent::getList($fields, $filter, $offset, $limit, $orderby);
     }
     $platform = $param['platform'] ? $param['platform'] : 'wap';
     // 獲得商品列表
     if ($info) {
         $list['total_results'] = $count;
         foreach ($info as $k => $v) {
             $param = array('special_id' => $v['special_id'], 'limit' => 4, 'platform' => $platform);
             $list['list'][] = $this->getSpecialInfo($param, 2);
         }
     }
     return $list;
 }
開發者ID:noikiy,項目名稱:Ecstore-to-odoo,代碼行數:32,代碼來源:special.php

示例3: count

 function count($filter = array())
 {
     if ($this->type == 'msgtoadmin') {
         $this->type = 'msg';
         $this->falg = 'msgtoadmin';
         $filter['to_id'] = 1;
     }
     if ($this->type) {
         $filter['object_type'] = $this->type;
     }
     if ($filter['for_comment_id'] === 'all') {
         unset($filter['for_comment_id']);
     } else {
         $filter['for_comment_id'] = $filter['for_comment_id'] ? $filter['for_comment_id'] : 0;
     }
     return parent::count($filter);
 }
開發者ID:syjzwjj,項目名稱:quyeba,代碼行數:17,代碼來源:comments.php

示例4:

 function check_tag($item)
 {
     return parent::count(array('tag_name' => $item['tag_name'], 'tag_type' => $item['tag_type'], 'app_id' => $item['app_id']));
 }
開發者ID:syjzwjj,項目名稱:quyeba,代碼行數:4,代碼來源:tag.php

示例5: array

 function get_subcat_count($cat_id)
 {
     $filter = array('parent_id' => $cat_id);
     return parent::count($filter);
 }
開發者ID:noikiy,項目名稱:snk,代碼行數:5,代碼來源:cat.php

示例6: count

 public function count($filter = array())
 {
     if ($tmp['member_id'] == '-1') {
         $arr = $_SESSION['b2c_cart_objects'][$tmp['member_ident']];
         $arr = $this->filter_getlist($arr, $filter);
     } else {
         if ($this->use_kv()) {
             //使用kv
             $this->kv_instance()->fetch($this->kv_prefix, $arr);
             $arr = $this->filter_getlist($arr, $filter);
         } else {
             //使用database
             return parent::count($filter);
         }
     }
     return $arr ? count($arr) : 0;
 }
開發者ID:syjzwjj,項目名稱:quyeba,代碼行數:17,代碼來源:objects.php

示例7: pcount

 public function pcount($filter = array())
 {
     return parent::count($filter);
 }
開發者ID:yindonghai,項目名稱:msk.com,代碼行數:4,代碼來源:objects.php

示例8:

 function parent_count($filter = null)
 {
     return parent::count($filter);
 }
開發者ID:noikiy,項目名稱:Ecstore-to-odoo,代碼行數:4,代碼來源:goods.php


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