table_connect_memberbindlog.php
1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: table_connect_memberbindlog.php 29265 2012-03-31 06:03:26Z yexinhao $
 */
if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}
class table_connect_memberbindlog extends discuz_table {
	public function __construct() {
		$this->_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;
	}
}