_table = 'connect_memberbindlog'; $this->_pk = 'mblid'; parent::__construct(); } public function count_uid_by_openid_type($openid, $type) { $count = (int) DB::result_first('SELECT count(DISTINCT uid) FROM %t WHERE uin=%s AND type=%d', array($this->_table, $openid, $type)); return $count; } public function fetch_all_by_openids($openids, $start = 0, $limit = 0) { $result = array(); if($openids) { $result = DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('uin', $openids).' ORDER BY dateline DESC '.DB::limit($start, $limit)); } return $result; } public function fetch_all_by_uids($uids, $start = 0, $limit = 0) { $result = array(); if($uids) { $result = DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('uid', $uids).' ORDER BY dateline DESC '.DB::limit($start, $limit)); } return $result; } }