DbPool.php
3.0 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
namespace Lib;
/**
* db 池
* @author:dc
* @time 2023/2/13 15:03
* Class DbPool
* @package Lib
*/
class DbPool {
/**
* @var \Lib\DbPool[]
*/
static $instance = [];
/**
* @var \PDO
*/
private $client;
/**
* @return mixed
* @author:dc
* @time 2023/2/13 9:12
*/
public function getClient(){
return $this->client;
}
/**
* 表
* @var string
*/
private string $table;
/**
* 查询条件
* @var string|array
*/
private string | array $where;
public function __construct()
{
try {
$this->client = new \PDO(
'mysql:charset=utf8mb4;dbname='.DB_DATABASE.';host='.DB_HOST.';port='.DB_PORT,
DB_USER,
DB_PASSWORD,
[
\PDO::ATTR_DEFAULT_FETCH_MODE => \PDO::FETCH_ASSOC,
\PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8mb4'",
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
]
);
}catch (\PDOException $e){
}
}
/**
* 表
* @param $table
* @return $this
* @author:dc
* @time 2023/2/13 14:36
*/
public function table($table){
$this->table = $table;
return $this;
}
/**
* 条件
* @param string|array $where
* @return $this
* @author:dc
* @time 2023/2/13 14:38
*/
public function where(string|array $where){
$this->where = $where;
return $this;
}
/**
* @param $sql
* @param null $params
* @return false|\PDOStatement
* @author:dc
* @time 2023/2/13 14:41
*/
private function query($sql,$params=null){
}
public function get($sql){
}
/**
* 统计数量
* @param string $sql
* @return int
* @author:dc
* @time 2023/2/14 16:19
*/
public function count(string $sql):int{
$query = $this->client->prepare($sql);
if($query->execute()){
return $query->fetch(\PDO::FETCH_COLUMN);
}
return 0;
}
/**
* 查询一条数据
* @param string|array $sql
* @return mixed|null
* @author:dc
* @time 2023/2/13 14:54
*/
public function first(string|array $sql){
$query = $this->client->prepare(is_array($sql) ? $sql[0] : $sql);
if($query->execute(is_array($sql) ? $sql[1] : null)){
return $query->fetch();
}
return null;
}
public function delete(){
}
/**
* @param $cid
* @return DbPool
* @author:dc
* @time 2023/2/13 9:39
*/
public static function instance($cid=0){
if(empty(static::$instance[$cid])){
static::$instance[$cid] = new DbPool();
}
return static::$instance[$cid];
}
/**
* 结束
*/
public function __destruct(){
$this->client = null;
}
}