我是靠谱客的博主 孤独板凳,这篇文章主要介绍PHP封装类似thinkphp连贯操作数据库Db类与简单应用示例,现在分享给大家,希望可以做个参考。

本文实例讲述了PHP封装类似thinkphp连贯操作数据库Db类与简单应用。分享给大家供大家参考,具体如下:

复制代码
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php header("Content-Type:text/html;charset=utf-8"); /** *php操作mysql的工具类 */ class Db{ private $_db = null;//数据库连接句柄 private $_table = null;//表名 private $_where = null;//where条件 private $_order = null;//order排序 private $_limit = null;//limit限定查询 private $_group = null;//group分组 private $_configs = array( 'hostname' => 'localhost', 'dbname' => 'test', 'username' => 'root', 'password' => '1234' );//数据库配置 /** * 构造函数,连接数据库 */ public function __construct(){ $link = $this->_db; if(!$link){ $db = mysqli_connect($this->_configs['hostname'],$this->_configs['username'],$this->_configs['password'],$this->_configs['dbname']); mysqli_query($db,"set names utf8"); if(!$db){ $this->ShowException("错误信息".mysqli_connect_error()); } $this->_db = $db; } } /** * 获取所有数据 * * @param <type> $table The table * * @return boolean All. */ public function getAll($table=null){ $link = $this->_db; if(!$link)return false; $sql = "SELECT * FROM {$table}"; $data = mysqli_fetch_all($this->execute($sql)); return $data; } public function table($table){ $this->_table = $table; return $this; } /** * 实现查询操作 * * @param string $fields The fields * * @return boolean ( description_of_the_return_value ) */ public function select($fields="*"){ $fieldsStr = ''; $link = $this->_db; if(!$link)return false; if(is_array($fields)){ $fieldsStr = implode(',', $fields); }elseif(is_string($fields)&&!empty($fields)){ $fieldsStr = $fields; } $sql = "SELECT {$fields} FROM {$this->_table} {$this->_where} {$this->_order} {$this->_limit}"; $data = mysqli_fetch_all($this->execute($sql)); return $data; } /** * order排序 * * @param string $order The order * * @return boolean ( description_of_the_return_value ) */ public function order($order=''){ $orderStr = ''; $link = $this->_db; if(!$link)return false; if(is_string($order)&&!empty($order)){ $orderStr = "ORDER BY ".$order; } $this->_order = $orderStr; return $this; } /** * where条件 * * @param string $where The where * * @return <type> ( description_of_the_return_value ) */ public function where($where=''){ $whereStr = ''; $link = $this->_db; if(!$link)return $link; if(is_array($where)){ foreach ($where as $key => $value) { if($value == end($where)){ $whereStr .= "`".$key."` = '".$value."'"; }else{ $whereStr .= "`".$key."` = '".$value."' AND "; } } $whereStr = "WHERE ".$whereStr; }elseif(is_string($where)&&!empty($where)){ $whereStr = "WHERE ".$where; } $this->_where = $whereStr; return $this; } /** * group分组 * * @param string $group The group * * @return boolean ( description_of_the_return_value ) */ public function group($group=''){ $groupStr = ''; $link = $this->_db; if(!$link)return false; if(is_array($group)){ $groupStr = "GROUP BY ".implode(',',$group); }elseif(is_string($group)&&!empty($group)){ $groupStr = "GROUP BY ".$group; } $this->_group = $groupStr; return $this; } /** * limit限定查询 * * @param string $limit The limit * * @return <type> ( description_of_the_return_value ) */ public function limit($limit=''){ $limitStr = ''; $link = $this->_db; if(!$link)return $link; if(is_string($limit)||!empty($limit)){ $limitStr = "LIMIT ".$limit; }elseif(is_numeric($limit)){ $limitStr = "LIMIT ".$limit; } $this->_limit = $limitStr; return $this; } /** * 执行sql语句 * * @param <type> $sql The sql * * @return boolean ( description_of_the_return_value ) */ public function execute($sql=null){ $link = $this->_db; if(!$link)return false; $res = mysqli_query($this->_db,$sql); if(!$res){ $errors = mysqli_error_list($this->_db); $this->ShowException("报错啦!<br/>错误号:".$errors[0]['errno']."<br/>SQL错误状态:".$errors[0]['sqlstate']."<br/>错误信息:".$errors[0]['error']); die(); } return $res; } /** * 插入数据 * * @param <type> $data The data * * @return boolean ( description_of_the_return_value ) */ public function insert($data){ $link = $this->_db; if(!$link)return false; if(is_array($data)){ $keys = ''; $values = ''; foreach ($data as $key => $value) { $keys .= "`".$key."`,"; $values .= "'".$value."',"; } $keys = rtrim($keys,','); $values = rtrim($values,','); } $sql = "INSERT INTO `{$this->_table}`({$keys}) VALUES({$values})"; mysqli_query($this->_db,$sql); $insertId = mysqli_insert_id($this->_db); return $insertId; } /** * 更新数据 * * @param <type> $data The data * * @return <type> ( description_of_the_return_value ) */ public function update($data){ $link = $this->_db; if(!$link)return $link; if(is_array($data)){ $dataStr = ''; foreach ($data as $key => $value) { $dataStr .= "`".$key."`='".$value."',"; } $dataStr = rtrim($dataStr,','); } $sql = "UPDATE `{$this->_table}` SET {$dataStr} {$this->_where} {$this->_order} {$this->_limit}"; $res = $this->execute($sql); return $res; } /** * 删除数据 * * @return <type> ( description_of_the_return_value ) */ public function delete(){ $link = $this->_db; if(!$link)return $link; $sql = "DELETE FROM `{$this->_table}` {$this->_where}"; $res = $this->execute($sql); return $res; } /** * 异常信息输出 * * @param <type> $var The variable */ private function ShowException($var){ if(is_bool($var)){ var_dump($var); }else if(is_null($var)){ var_dump(NULL); }else{ echo "<pre style='position:relative;z-index:1000;padding:10px;border-radius:5px;background:#F5F5F5;border:1px solid #aaa;font-size:14px;line-height:18px;opacity:0.9;'>".print_r($var,true)."</pre>"; } } } $db = new Db(); //查询操作 var_dump($db->table('user')->where('id > 2')->order('id desc')->limit('2,4')->select()); //插入操作 var_dump($db->table('user')->insert(array('username'=>'user','password'=>'pwd'))); //更新操作 var_dump($db->table('user')->where('id = 1')->update(array('username'=>'user1','password'=>'pwd1'))); //删除操作 var_dump($db->table('user')->where('id = 1')->delete());

更多关于PHP相关内容感兴趣的读者可查看本站专题:《php+mysqli数据库程序设计技巧总结》、《php面向对象程序设计入门教程》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家PHP程序设计有所帮助。

最后

以上就是孤独板凳最近收集整理的关于PHP封装类似thinkphp连贯操作数据库Db类与简单应用示例的全部内容,更多相关PHP封装类似thinkphp连贯操作数据库Db类与简单应用示例内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(145)

评论列表共有 0 条评论

立即
投稿
返回
顶部