全新的PDO数据库操作类php版(仅适用Mysql)


Posted in PHP onJuly 22, 2012
/** 
* 作者:胡睿 
* 日期:2012/07/21 
* 电邮:hooray0905@foxmail.com 
*/ class HRDB{ 
protected $pdo; 
protected $res; 
protected $config; 
/*构造函数*/ 
function __construct($config){ 
$this->Config = $config; 
$this->connect(); 
} 
/*数据库连接*/ 
public function connect(){ 
$this->pdo = new PDO($this->Config['dsn'], $this->Config['name'], $this->Config['password']); 
$this->pdo->query('set names utf8;'); 
//把结果序列化成stdClass 
//$this->pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ); 
//自己写代码捕获Exception 
$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 
} 
/*数据库关闭*/ 
public function close(){ 
$this->pdo = null; 
} 
public function query($sql){ 
$res = $this->pdo->query($sql); 
if($res){ 
$this->res = $res; 
} 
} 
public function exec($sql){ 
$res = $this->pdo->exec($sql); 
if($res){ 
$this->res = $res; 
} 
} 
public function fetchAll(){ 
return $this->res->fetchAll(); 
} 
public function fetch(){ 
return $this->res->fetch(); 
} 
public function fetchColumn(){ 
return $this->res->fetchColumn(); 
} 
public function lastInsertId(){ 
return $this->res->lastInsertId(); 
} 
/** 
* 参数说明 
* int $debug 是否开启调试,开启则输出sql语句 
* 0 不开启 
* 1 开启 
* 2 开启并终止程序 
* int $mode 返回类型 
* 0 返回多条记录 
* 1 返回单条记录 
* 2 返回行数 
* string/array $table 数据库表,两种传值模式 
* 普通模式: 
* 'tb_member, tb_money' 
* 数组模式: 
* array('tb_member', 'tb_money') 
* string/array $fields 需要查询的数据库字段,允许为空,默认为查找全部,两种传值模式 
* 普通模式: 
* 'username, password' 
* 数组模式: 
* array('username', 'password') 
* string/array $sqlwhere 查询条件,允许为空,两种传值模式 
* 普通模式: 
* 'and type = 1 and username like "%os%"' 
* 数组模式: 
* array('type = 1', 'username like "%os%"') 
* string $orderby 排序,默认为id倒序 
*/ 
public function select($debug, $mode, $table, $fields="*", $sqlwhere="", $orderby="tbid desc"){ 
//参数处理 
if(is_array($table)){ 
$table = implode(', ', $table); 
} 
if(is_array($fields)){ 
$fields = implode(', ', $fields); 
} 
if(is_array($sqlwhere)){ 
$sqlwhere = ' and '.implode(' and ', $sqlwhere); 
} 
//数据库操作 
if($debug === 0){ 
if($mode === 2){ 
$this->query("select count(tbid) from $table where 1=1 $sqlwhere"); 
$return = $this->fetchColumn(); 
}else if($mode === 1){ 
$this->query("select $fields from $table where 1=1 $sqlwhere order by $orderby"); 
$return = $this->fetch(); 
}else{ 
$this->query("select $fields from $table where 1=1 $sqlwhere order by $orderby"); 
$return = $this->fetchAll(); 
} 
return $return; 
}else{ 
if($mode === 2){ 
echo "select count(tbid) from $table where 1=1 $sqlwhere"; 
}else if($mode === 1){ 
echo "select $fields from $table where 1=1 $sqlwhere order by $orderby"; 
} 
else{ 
echo "select $fields from $table where 1=1 $sqlwhere order by $orderby"; 
} 
if($debug === 2){ 
exit; 
} 
} 
} 
/** 
* 参数说明 
* int $debug 是否开启调试,开启则输出sql语句 
* 0 不开启 
* 1 开启 
* 2 开启并终止程序 
* int $mode 返回类型 
* 0 无返回信息 
* 1 返回执行条目数 
* 2 返回最后一次插入记录的id 
* string/array $table 数据库表,两种传值模式 
* 普通模式: 
* 'tb_member, tb_money' 
* 数组模式: 
* array('tb_member', 'tb_money') 
* string/array $set 需要插入的字段及内容,两种传值模式 
* 普通模式: 
* 'username = "test", type = 1, dt = now()' 
* 数组模式: 
* array('username = "test"', 'type = 1', 'dt = now()') 
*/ 
public function insert($debug, $mode, $table, $set){ 
//参数处理 
if(is_array($table)){ 
$table = implode(', ', $table); 
} 
if(is_array($set)){ 
$set = implode(', ', $set); 
} 
//数据库操作 
if($debug === 0){ 
if($mode === 2){ 
$this->query("insert into $table set $set"); 
$return = $this->lastInsertId(); 
}else if($mode === 1){ 
$this->exec("insert into $table set $set"); 
$return = $this->res; 
}else{ 
$this->query("insert into $table set $set"); 
$return = NULL; 
} 
return $return; 
}else{ 
echo "insert into $table set $set"; 
if($debug === 2){ 
exit; 
} 
} 
} 
/** 
* 参数说明 
* int $debug 是否开启调试,开启则输出sql语句 
* 0 不开启 
* 1 开启 
* 2 开启并终止程序 
* int $mode 返回类型 
* 0 无返回信息 
* 1 返回执行条目数 
* string $table 数据库表,两种传值模式 
* 普通模式: 
* 'tb_member, tb_money' 
* 数组模式: 
* array('tb_member', 'tb_money') 
* string/array $set 需要更新的字段及内容,两种传值模式 
* 普通模式: 
* 'username = "test", type = 1, dt = now()' 
* 数组模式: 
* array('username = "test"', 'type = 1', 'dt = now()') 
* string/array $sqlwhere 修改条件,允许为空,两种传值模式 
* 普通模式: 
* 'and type = 1 and username like "%os%"' 
* 数组模式: 
* array('type = 1', 'username like "%os%"') 
*/ 
public function update($debug, $mode, $table, $set, $sqlwhere=""){ 
//参数处理 
if(is_array($table)){ 
$table = implode(', ', $table); 
} 
if(is_array($set)){ 
$set = implode(', ', $set); 
} 
if(is_array($sqlwhere)){ 
$sqlwhere = ' and '.implode(' and ', $sqlwhere); 
} 
//数据库操作 
if($debug === 0){ 
if($mode === 1){ 
$this->exec("update $table set $set where 1=1 $sqlwhere"); 
$return = $this->res; 
}else{ 
$this->query("update $table set $set where 1=1 $sqlwhere"); 
$return = NULL; 
} 
return $return; 
}else{ 
echo "update $table set $set where 1=1 $sqlwhere"; 
if($debug === 2){ 
exit; 
} 
} 
} 
/** 
* 参数说明 
* int $debug 是否开启调试,开启则输出sql语句 
* 0 不开启 
* 1 开启 
* 2 开启并终止程序 
* int $mode 返回类型 
* 0 无返回信息 
* 1 返回执行条目数 
* string $table 数据库表 
* string/array $sqlwhere 删除条件,允许为空,两种传值模式 
* 普通模式: 
* 'and type = 1 and username like "%os%"' 
* 数组模式: 
* array('type = 1', 'username like "%os%"') 
*/ 
public function delete($debug, $mode, $table, $sqlwhere=""){ 
//参数处理 
if(is_array($sqlwhere)){ 
$sqlwhere = ' and '.implode(' and ', $sqlwhere); 
} 
//数据库操作 
if($debug === 0){ 
if($mode === 1){ 
$this->exec("delete from $table where 1=1 $sqlwhere"); 
$return = $this->res; 
}else{ 
$this->query("delete from $table where 1=1 $sqlwhere"); 
$return = NULL; 
} 
return $return; 
}else{ 
echo "delete from $table where 1=1 $sqlwhere"; 
if($debug === 2){ 
exit; 
} 
} 
} 
}

其实使用上,和之前的相差不大,目的就是为了方便移植。

本次重写着重处理了几个问题:

① insert语句太复杂,fields与values对应容易出现误差

我们看下最常见的一句sql插入语句

insert into tb_member (username, type, dt) values ('test', 1, now())

在传统模式下,fields和values参数是分开传入的,但却要保证两者参数传入的顺序一致。这很容易导致顺序错乱或者漏传某个参数。

这次已经把问题修改了,采用了mysql独有的insert语法,同样是上面那功能,就可以换成这样的写法

insert into tb_member set username = "test", type = 1, lastlogindt = now()

就像update一样,一目了然。

② 部分参数可以用数组代替

比如这样一句sql

delete from tb_member where 1=1 and tbid = 1 and username = "hooray"

在原先调用方法的时候,需要手动拼装好where条件,这样操作的成本很高,现在完全可以用这种形式

$where = array( 
'tbid = 1', 
'username = "hooray"' 
); 
$db->delete(1, 0, 'tb_member', $where);

条件再多也不会打乱你的思路。同样,不仅仅是where参数,update里的set也可以以这种形式(具体可参见完整源码)

$set = array('username = "123"', 'type = 1', 'lastlogindt = now()'); 
$where = array('tbid = 1'); 
$db->update(1, 0, 'tb_member', $set, $where);

③ 可自定义sql语句

有时候,sql过于复杂,导致无法使用类里提供的方法去组装sql语句,这时候就需要一个功能,就是能直接传入我已经组装好的sql语句执行,并返回信息。现在,这功能也有了

$db->query('select username, password from tb_member'); 
$rs = $db->fetchAll();

是不是很像pdo原生态的写法?

④ 支持创建多数据库连接

原先的因为只是数据库操作方法,所以并不支持多数据库连接,在实现上需要复制出2个相同的文件,修改部分变量,操作实属复杂。现在这问题也解决了。

$db_hoorayos_config = array( 
'dsn'=>'mysql:host=localhost;dbname=hoorayos', 
'name'=>'root', 
'password'=>'hooray' 
); 
$db = new HRDB($db_hoorayos_config); $db_hoorayos_config2 = array( 
'dsn'=>'mysql:host=localhost;dbname=hoorayos2', 
'name'=>'root', 
'password'=>'hooray' 
); 
$db2 = new HRDB($db_hoorayos_config2);

这样就能同时创建2个数据库连接,方便处理数据库与数据库交互的情况。

大致新功能就是这么多了,整个代码并不多,欢迎阅读了解。下面是我在编写时写的测试代码,也一并提供上来,方便大家学习。

require_once('global.php'); 
require_once('inc/setting.inc.php'); $db = new HRDB($db_hoorayos_config); 
echo '<hr><b>select测试</b><hr>'; 
echo '普通模式,直接字符串传入<br>'; 
$rs = $db->select(1, 0, 'tb_member', 'username, password', 'and type = 1 and username like "%os%"'); 
echo '<br>数组模式,可传入数组<br>'; 
$fields = array('username', 'password'); 
$where = array('type = 1', 'username like "%os%"'); 
$rs = $db->select(1, 0, 'tb_member', $fields, $where); 
echo '<hr><b>insert测试</b><hr>'; 
echo '普通模式,直接字符串传入<br>'; 
$db->insert(1, 0, 'tb_member', 'username = "test", type = 1, lastlogindt = now()'); 
echo '<br>数组模式,可传入数组<br>'; 
$set = array('username = "test"', 'type = 1', 'lastlogindt = now()'); 
$db->insert(1, 0, 'tb_member', $set); 
echo '<hr><b>update测试</b><hr>'; 
echo '普通模式,直接字符串传入<br>'; 
$db->update(1, 0, 'tb_member', 'username = "123", type = 1, lastlogindt = now()', 'and tbid = 7'); 
echo '<br>数组模式,可传入数组<br>'; 
$set = array('username = "123"', 'type = 1', 'lastlogindt = now()'); 
$where = array('tbid = 1'); 
$db->update(1, 0, 'tb_member', $set, $where); 
echo '<hr><b>delete测试</b><hr>'; 
echo '普通模式,直接字符串传入<br>'; 
$db->delete(1, 0, 'tb_member', 'and tbid = 1 and username = "hooray"'); 
echo '<br>数组模式,可传入数组<br>'; 
$where = array( 
'tbid = 1', 
'username = "hooray"' 
); 
$db->delete(1, 0, 'tb_member', $where); 
echo '<hr><b>自定义sql</b><hr>'; 
$db->query('select username, password from tb_member'); 
$rs = $db->fetchAll(); 
var_dump($rs); 
$db->close();

作者:胡??X
PHP 相关文章推荐
PHP5/ZendEngine2的改进
Oct 09 PHP
ADODB类使用
Nov 25 PHP
php ajax 静态分页过程形式
Sep 02 PHP
浅谈Eclipse PDT调试PHP程序
Jun 09 PHP
PHP实现的多彩标签效果代码分享
Aug 21 PHP
PHP实现的简单mock json脚本分享
Feb 10 PHP
php检索或者复制远程文件的方法
Mar 13 PHP
Laravel 中获取上一篇和下一篇数据
Jul 27 PHP
PHP redis实现超迷你全文检索
Mar 04 PHP
PHP读取CSV大文件导入数据库的实例
Jul 24 PHP
PHP实现基于栈的后缀表达式求值功能
Nov 10 PHP
解决PHP使用CURL发送GET请求时传递参数的问题
Oct 11 PHP
php 操作数组(合并,拆分,追加,查找,删除等)
Jul 20 #PHP
php中的一些数组排序方法分享
Jul 20 #PHP
xml在joomla表单中的应用详解分享
Jul 19 #PHP
ajax在joomla中的原生态应用代码
Jul 19 #PHP
php插入中文到sqlserver 2008里出现乱码的解决办法分享
Jul 19 #PHP
php在项目中寻找代码的坏味道(综艺命名)
Jul 19 #PHP
PHP的5个安全措施小结
Jul 17 #PHP
You might like
PHP5.2下chunk_split()函数整数溢出漏洞 分析
2007/06/06 PHP
基于php在各种web服务器的运行模式详解
2013/06/03 PHP
php使用curl简单抓取远程url的方法
2015/03/13 PHP
php实现以只读方式打开文件的方法
2015/03/16 PHP
jQuery中与toggleClass等价的程序段 以及未来学习的方向
2010/03/18 Javascript
JavaScript在多浏览器下for循环的使用方法
2012/11/07 Javascript
node.js中的fs.unlinkSync方法使用说明
2014/12/15 Javascript
node.js [superAgent] 请求使用示例
2015/03/13 Javascript
AngularJS学习笔记之ng-options指令
2015/06/16 Javascript
js简单倒计时实现代码
2016/04/30 Javascript
js获取浏览器高度 窗口高度 元素尺寸 偏移属性的方法
2016/11/21 Javascript
jquery利用json实现页面之间传值的实例解析
2016/12/12 Javascript
Angular的MVC和作用域
2016/12/26 Javascript
JS jQuery使用正则表达式去空字符的简单实现代码
2017/05/20 jQuery
JavaScript实现浅拷贝与深拷贝的方法分析
2018/07/05 Javascript
JQuery判断radio单选框是否选中并获取值的方法
2019/01/17 jQuery
手挽手带你学React之React-router4.x的使用
2019/02/14 Javascript
layui数据表格 table.render 报错的解决方法
2019/09/29 Javascript
微信小程序实现选择地址省市区三级联动
2020/06/21 Javascript
解决vue-router 切换tab标签关闭时缓存问题
2020/07/22 Javascript
在vant 中使用cell组件 定义图标该图片和位置操作
2020/11/02 Javascript
Python实现批量读取word中表格信息的方法
2015/07/30 Python
python中异常报错处理方法汇总
2016/11/20 Python
python+mysql实现个人论文管理系统
2019/10/25 Python
python 实现将小图片放到另一个较大的白色或黑色背景图片中
2019/12/12 Python
Ubuntu16.04安装python3.6.5步骤详解
2020/01/10 Python
python 元组和列表的区别
2020/12/30 Python
python中的列表和元组区别分析
2020/12/30 Python
HTML5 Canvas自定义圆角矩形与虚线示例代码
2013/08/02 HTML / CSS
html5图片上传预览示例分享
2014/04/14 HTML / CSS
关于canvas绘制模糊问题的解决方法
2019/09/24 HTML / CSS
英国太阳镜品牌:Taylor Morris Eyewear
2018/04/18 全球购物
教学大赛获奖感言
2014/01/15 职场文书
小学家长评语大全
2014/04/16 职场文书
2014年银行客户经理工作总结
2014/11/12 职场文书
理想国读书笔记
2015/06/25 职场文书