一个基于PDO的数据库操作类


Posted in PHP onMarch 24, 2011

百度之后决定使用PDO,至于为什么选择PDO,这里就不再多说,大家自己去百度下就能明白。
既然要换,那最基本就需要有个常用的数据库操作类,也就是所谓的增删改查等,昨晚捣腾了一晚,大致弄出了个雏形,以下就是代码,希望大家能给出点意见。

<?php 
/* 
作者:胡睿 
日期:2011/03/19 
电邮:hooray0905@foxmail.com 
20110319 
常用数据库操作,如:增删改查,获取单条记录、多条记录,返回最新一条插入记录id,返回操作记录行数等 
*/ 
/* 
参数说明 
int $debug 是否开启调试,开启则输出sql语句 
int $getcount 是否记数,返回值为行数 
int $getrow 是否返回值单条记录 
string $table 数据库表 
string $fields 需要查询的数据库字段,允许为空,默认为查找全部 
string $sqlwhere 查询条件,允许为空 
string $orderby 排序,允许为空,默认为id倒序 
*/ 
function hrSelect($debug, $getcount, $getrow, $table, $fields="*", $sqlwhere="", $orderby="id desc"){ 
global $pdo; 
if($debug){ 
if($getcount){ 
echo "select count(*) from $table where 1=1 $sqlwhere order by $orderby"; 
}else{ 
echo "select $fields from $table where 1=1 $sqlwhere order by $orderby"; 
} 
exit; 
}else{ 
if($getcount){ 
$rs = $pdo->query("select count(*) from $table where 1=1 $sqlwhere order by $orderby"); 
return $rs->fetchColumn(); 
}elseif($getrow){ 
$rs = $pdo->query("select $fields from $table where 1=1 $sqlwhere order by $orderby"); 
return $rs->fetch(); 
}else{ 
$rs = $pdo->query("select $fields from $table where 1=1 $sqlwhere order by $orderby"); 
return $rs->fetchAll(); 
} 
} 
} 
/* 
参数说明 
int $debug 是否开启调试,开启则输出sql语句 
int $execrow 是否开启返回执行条目数 
int $lastinsertid 是否开启返回最后一条插入记录id 
string $table 数据库表 
string $fields 需要插入数据库的字段 
string $values 需要插入数据库的信息,必须与$fields一一对应 
*/ 
function hrInsert($debug, $execrow, $lastinsertid, $table, $fields, $values){ 
global $pdo; 
if($debug){ 
echo "insert into $table ($fields) values ($values)"; 
exit; 
}elseif($execrow){ 
return $pdo->exec("insert into $table ($fields) values ($values)"); 
}elseif($lastinsertid){ 
return $pdo->lastInsertId("insert into $table ($fields) values ($values)"); 
}else{ 
$pdo->query("insert into $table ($fields) values ($values)"); 
} 
} 
/* 
参数说明 
int $debug 是否开启调试,开启则输出sql语句 
int $execrow 是否开启执行并返回条目数 
string $table 数据库表 
string $set 需要更新的字段及内容,格式:a='abc',b=2,c='2010-10-10 10:10:10' 
string $sqlwhere 修改条件,允许为空 
*/ 
function hrUpdate($debug, $execrow, $table, $set, $sqlwhere=""){ 
global $pdo; 
if($debug){ 
echo "update $table set $set where 1=1 $sqlwhere"; 
exit; 
}elseif($execrow){ 
return $pdo->exec("update $table set $set where 1=1 $sqlwhere"); 
}else{ 
$pdo->query("update $table set $set where 1=1 $sqlwhere"); 
} 
} 
/* 
参数说明 
int $debug 是否开启调试,开启则输出sql语句 
int $execrow 是否开启返回执行条目数 
string $table 数据库表 
string $sqlwhere 删除条件,允许为空 
*/ 
function hrDelete($debug, $execrow, $table, $sqlwhere=""){ 
global $pdo; 
if($debug){ 
echo "delete from $table where 1=1 $sqlwhere"; 
exit; 
}elseif($execrow){ 
return $pdo->exec("delete from $table where 1=1 $sqlwhere"); 
}else{ 
$pdo->query("delete from $table where 1=1 $sqlwhere"); 
} 
} 
?>

参数的注释都写的很清楚,如果有人需要,不清楚使用方法可以直接问我。
PHP 相关文章推荐
asp和php下textarea提交大量数据发生丢失的解决方法
Jan 20 PHP
php下保存远程图片到本地的办法
Aug 08 PHP
PHP的autoload机制的实现解析
Sep 15 PHP
鸡肋的PHP单例模式应用详解
Jun 03 PHP
easyui的tabs update正确用法分享
Mar 21 PHP
PHP SplObjectStorage使用实例
May 12 PHP
smarty中改进truncate使其支持中文的方法
May 30 PHP
分享PHP-pcntl 实现多进程代码
Sep 30 PHP
ThinkPHP实现附件上传功能
Apr 27 PHP
Laravel项目中timeAgo字段语言转换的改善方法示例
Sep 16 PHP
解决tp5在nginx下修改配置访问的问题
Oct 16 PHP
php设计模式之模板模式实例分析【星际争霸游戏案例】
Mar 24 PHP
Zend Studio (eclipse)使用速度优化方法
Mar 23 #PHP
常见的PHP五种设计模式小结
Mar 23 #PHP
PHP中MVC模式的模板引擎开发经验分享
Mar 23 #PHP
PHP面向接口编程 耦合设计模式 简单范例
Mar 23 #PHP
PHP中用接口、抽象类、普通基类实现“面向接口编程”与“耦合方法”简述
Mar 23 #PHP
php中取得URL的根域名的代码
Mar 23 #PHP
PHP+JS+rsa数据加密传输实现代码
Mar 23 #PHP
You might like
php页面防重复提交方法总结
2013/11/25 PHP
php密码生成类实例
2014/09/24 PHP
PHP SPL标准库之数据结构堆(SplHeap)简单使用实例
2015/05/12 PHP
php使用json_decode后数字对象转换成了科学计数法的解决方法
2017/02/20 PHP
使用PHP+MySql实现微信投票功能实例代码
2017/09/29 PHP
php curl获取到json对象并转成数组array的方法
2018/05/31 PHP
PHP函数用法详解【初始化、嵌套、内置函数等】
2020/06/02 PHP
Mootools 1.2教程 排序类和方法简介
2009/09/15 Javascript
js 去掉空格实例 Trim() LTrim() RTrim()
2014/01/07 Javascript
jQuery的3种请求方式$.post,$.get,$.getJSON
2014/03/28 Javascript
javascript:void(0)的问题使用探讨
2014/04/10 Javascript
javascript数组排序汇总
2015/07/07 Javascript
基于insertBefore制作简单的循环插空效果
2015/09/21 Javascript
详解jQuery事件
2017/01/13 Javascript
vue3.0 CLI - 2.6 - 组件的复用入门教程
2018/09/14 Javascript
js 实现watch监听数据变化的代码
2019/10/13 Javascript
浅析vue中的provide / inject 有什么用处
2019/11/10 Javascript
JS pushlet XMLAdapter适配器用法案例解析
2020/10/16 Javascript
python清除字符串里非字母字符的方法
2015/07/02 Python
Python简单检测文本类型的2种方法【基于文件头及cchardet库】
2016/09/18 Python
Python读取指定目录下指定后缀文件并保存为docx
2017/04/23 Python
Python系统监控模块psutil功能与经典用法分析
2018/05/24 Python
Python实现注册、登录小程序功能
2018/09/21 Python
Django之PopUp的具体实现方法
2019/08/31 Python
HTML5中使用postMessage实现Ajax跨域请求的方法
2016/04/19 HTML / CSS
跨域修改iframe页面内容详解
2019/10/31 HTML / CSS
Cotton On美国网站:澳洲时装连锁品牌
2016/10/25 全球购物
单身旅行者的单身假期:Just You
2018/04/08 全球购物
北美最大的手工艺品零售商之一:Michaels Stores
2019/02/27 全球购物
创业计划书模版
2014/02/05 职场文书
国际贸易求职信
2014/07/05 职场文书
小学校长个人总结
2015/03/03 职场文书
大学生村官工作心得体会
2016/01/23 职场文书
Django显示可视化图表的实践
2021/05/10 Python
Python竟然能剪辑视频
2021/05/25 Python
Java框架入门之简单介绍SpringBoot框架
2021/06/18 Java/Android