|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
熟悉了PHP和MYSQL开发的要领之后,再回头看你写的那个留言本,你也许会怀疑那真的是你写的吗?当然,如果屋里还有鬼的话,也许是它写的-_- 复制代码 代码以下:
<?php
/*
* 作者:胡睿
* 日期:2011/03/19
* 电邮:hooray0905@foxmail.com
*
* 20110319
* 经常使用数据库操作,如:增删改查,获得单笔记录、多笔记录,前往最新一条拔出纪录id,前往操作纪录行数等
* 20110630
* 全体修正办法,兼并局部参数
* 标准代码,一个办法里只要1个return语句
*/
/*
参数申明
int $debug 是不是开启调试,开启则输入sql语句
int $mode 0 前往数组
1 前往单笔记录
2 前往行数
string $table 数据库表
string $fields 需求查询的数据库字段,答应为空,默许为查找全体
string $sqlwhere 查询前提,答应为空
string $orderby 排序,答应为空,默许为id倒序
*/
function hrSelect($debug, $mode, $table, $fields="*", $sqlwhere="", $orderby="id desc"){
global $pdo;
if($debug){
if($mode == 2){
echo "select count(*) from $table where 1=1 $sqlwhere order by $orderby";
}elseif($mode == 1){
echo "select $fields from $table where 1=1 $sqlwhere";
}else{
echo "select $fields from $table where 1=1 $sqlwhere order by $orderby";
}
exit;
}else{
if($mode == 2){
$rs = $pdo->query("select count(*) from $table where 1=1 $sqlwhere order by $orderby");
$return = $rs->fetchColumn();
}elseif($mode == 1){
$rs = $pdo->query("select $fields from $table where 1=1 $sqlwhere");
$return = $rs->fetch();
}else{
$rs = $pdo->query("select $fields from $table where 1=1 $sqlwhere order by $orderby");
$return = $rs->fetchAll();
}
return $return;
}
}
/*
参数申明
int $debug 是不是开启调试,开启则输入sql语句
int $mode 0 默许insert,无前往信息
1 前往履行条目数
2 前往最初一次拔出纪录的id
string $table 数据库表
string $fields 需求拔出数据库的字段
string $values 需求拔出数据库的信息,必需与$fields逐一对应
*/
function hrInsert($debug, $mode, $table, $fields, $values){
global $pdo;
if($debug){
echo "insert into $table ($fields) values ($values)";
exit;
}else{
if($mode == 2){
$return = $pdo->lastInsertId("insert into $table ($fields) values ($values)");
}elseif($mode == 1){
$return = $pdo->exec("insert into $table ($fields) values ($values)");
}else{
$pdo->query("insert into $table ($fields) values ($values)");
exit;
}
return $return;
}
}
/*
参数申明
int $debug 是不是开启调试,开启则输入sql语句
int $mode 0 默许update,无前往信息
1 前往履行条目数
string $table 数据库表
string $set 需求更新的字段及内容,格局:a='abc',b=2,c='2010-10-10 10:10:10'
string $sqlwhere 修正前提,答应为空
*/
function hrUpdate($debug, $mode, $table, $set, $sqlwhere=""){
global $pdo;
if($debug){
echo "update $table set $set where 1=1 $sqlwhere";
exit;
}else{
if($mode==1){
$return = $pdo->exec("update $table set $set where 1=1 $sqlwhere");
}else{
$pdo->query("update $table set $set where 1=1 $sqlwhere");
exit;
}
return $return;
}
}
/*
参数申明
int $debug 是不是开启调试,开启则输入sql语句
int $mode 0 默许delete,无前往信息
1 前往履行条目数
string $table 数据库表
string $sqlwhere 删除前提,答应为空
*/
function hrDelete($debug, $mode, $table, $sqlwhere=""){
global $pdo;
if($debug){
echo "delete from $table where 1=1 $sqlwhere";
exit;
}else{
if($mode == 1){
$return = $pdo->exec("delete from $table where 1=1 $sqlwhere");
}else{
$pdo->query("delete from $table where 1=1 $sqlwhere");
exit;
}
return $return;
}
}
?>
别的一段代码是基于我这个数据库操作类的事务虚例:
复制代码 代码以下:
/*
注重,数据库操作表类型必需为InnoDB,其他类型不撑持事务
PDO事务机制
$pdo->beginTransaction(); --开启事务
$pdo->commit(); --停止事务
$pdo->rollBack(); --回滚操作
示例,用try/catch包住db操作,当事务内的db操作呈现中止,则履行回滚并抛出异常信息。
*/
try{
$pdo->beginTransaction();
hrInsert(0,1,"class","name,parentid","'god',0"); //可以正常履行
hrInsert(0,0,0,"tb_searchlog","userid,code","4"); //失足
$pdo->commit();
}catch(Exception $e){
$pdo->rollBack();
echo "Failed: " . $e->getMessage();
}
代码下载:点击下载在学习中,我也一直这样要求着自己。 |
|