PHP封装数据库操作类

我们在网站开发时比较合理的做法就是我们的常用的一些程序做成函数或封闭成类,这样可以重复利用,可以节约开发成本了,下面我来给各位介绍了我常使用的类.

有面向对象技术基础的编程人员看一天就可以写起来了,而PHP在访问数据库的时候又经常会出现各种问题,如字符编码问题、SQL语法错误问题、PHP处理数据记录对象和返回对象的问题等,我这里写了一个数据库操作类,封装了数据库增删添改等操作,很方便使用,用这个类,可以加速网站的后台开发.

优点:

1.方便快捷, 数据库操作只需调用接口;

2.统一编码(utf8),不易导致乱码

3.结构清晰. 如处理前端请求的后台程序(test.php) + 表封装类(user.class.php) + 数据库封装类(db.class.php) + 配置信息(configuration.php)

以下例子有四个文件:configuration.php + db.class.php + user.class.php + test.php,放在同一个目录下.

首先是一个数据库配置的文件类configuration.php,代码如下:

  1. <?php
  2. /**
  3. * 数据库配置信息
  4. */
  5. define('DB_HOST','localhost'); //服务器
  6. define('DB_USER','root'); //数据库用户名
  7. define('DB_PASSWORD',''); //数据库密码
  8. define('DB_NAME','test0'); //默认数据库
  9. define('DB_CHARSET','utf8'); //数据库字符集
  10. define('TIMEZONE',"PRC"); //时区设置
  11. ?>

接下来就是数据库操作类db.class.php,代码如下:

  1. <?php
  2. require_once("./configuration.php"); //引入配置常量文件
  3. date_default_timezone_set(TIMEZONE);
  4. /**
  5. * 类名:DB
  6. * 说明:数据库操作类
  7. */
  8. class DB
  9. {
  10. public $host; //服务器
  11. public $username; //数据库用户名
  12. public $password; //数据密码
  13. public $dbname; //数据库名
  14. public $conn; //数据库连接变量
  15. /**
  16. * DB类构造函数
  17. */
  18. public function DB($host=DB_HOST ,$username=DB_USER,$password=DB_PASSWORD,$dbname=DB_NAME)
  19. {
  20. $this->host = $host;
  21. $this->username = $username;
  22. $this->password = $password;
  23. $this->dbname = $dbname;
  24. }
  25. /**
  26. * 打开数据库连接
  27. */
  28. public function open()
  29. {
  30. $this->conn = mysql_connect($this->host,$this->username,$this->password);
  31. mysql_select_db($this->dbname);
  32. mysql_query("SET CHARACTER SET utf8");
  33. }
  34. /**
  35. * 关闭数据连接
  36. */
  37. public function close()
  38. {
  39. mysql_close($this->conn);
  40. }
  41. /**
  42. * 通过sql语句获取数据
  43. * @return: array()
  44. */
  45. public function getObjListBySql($sql)
  46. {
  47. $this->open();
  48. $rs = mysql_query($sql,$this->conn);
  49. $objList = array();
  50. while($obj = mysql_fetch_object($rs))
  51. {
  52. if($obj)
  53. {
  54. $objList[] = $obj;
  55. }
  56. }
  57. $this->close();
  58. return $objList;
  59. }
  60. /**
  61. * 向数据库表中插入数据
  62. * @param:$table,表名
  63. * @param:$columns,包含表中所有字段名的数组。默认空数组,则是全部有序字段名
  64. * @param:$values,包含对应所有字段的属性值的数组
  65. */
  66. public function insertData($table,$columns=array(),$values=array())
  67. {
  68. $sql = 'insert into '.$table .'( ';
  69. for($i = 0; $i < sizeof($columns);$i ++)
  70. {
  71. $sql .= $columns[$i];
  72. if($i < sizeof($columns) - 1)
  73. {
  74. $sql .= ',';
  75. }
  76. }
  77. $sql .= ') values ( ';
  78. for($i = 0; $i < sizeof($values);$i ++)
  79. {
  80. $sql .= "'".$values[$i]."'";
  81. if($i < sizeof($values) - 1)
  82. {
  83. $sql .= ',';
  84. }
  85. }
  86. $sql .= ' )';
  87. $this->open();
  88. mysql_query($sql,$this->conn);
  89. $id = mysql_insert_id($this->conn);
  90. $this->close();
  91. return $id;
  92. }
  93. /**
  94. * 通过表中的某一属性获取数据
  95. */
  96. public function getDataByAtr($tableName,$atrName,$atrValue){
  97. @$data = $this->getObjListBySql("SELECT * FROM ".$tableName." WHERE $atrName = '$atrValue'");
  98. if(count($data)!=0)return $data;
  99. return NULL; //开源代码phpfensi.com
  100. }
  101. /**
  102. * 通过表中的"id",删除记录
  103. */
  104. public function delete($tableName,$atrName,$atrValue){
  105. $this->open();
  106. $deleteResult = false;
  107. if(mysql_query("DELETE FROM ".$tableName." WHERE $atrName = '$atrValue'")) $deleteResult = true;
  108. $this->close();
  109. if($deleteResult) return true;
  110. else return false;
  111. }
  112. /**
  113. * 更新表中的属性值
  114. */
  115. public function updateParamById($tableName,$atrName,$atrValue,$key,$value){
  116. $db = new DB();
  117. $db->open();
  118. if(mysql_query("UPDATE ".$tableName." SET $key = '$value' WHERE $atrName = '$atrValue' ")){ //$key不要单引号
  119. $db->close();
  120. return true;
  121. }
  122. else{
  123. $db->close();
  124. return false;
  125. }
  126. }
  127. /*
  128. * @description: 取得一个table的所有属性名
  129. * @param: $tbName 表名
  130. * @return:字符串数组
  131. */
  132. public function fieldName($tbName){
  133. $resultName=array();
  134. $i=0;
  135. $this->open();
  136. $result = mysql_query("SELECT * FROM $tbName");
  137. while ($property = mysql_fetch_field($result)){
  138. $resultName[$i++]=$property->name;
  139. }
  140. $this->close();
  141. return $resultName;
  142. }
  143. }
  144. ?>

接下来是测试了,我在phpmyadmin中建了一个test0数据库,里面建一张表user,然后用php写一个user类对应数据库中的user表.

user.class.php,代码如下:

  1. <?php
  2. require_once("./db.class.php");
  3. class User{
  4. public $name = NULL;
  5. public $password = NULL;
  6. /**
  7. * 构造函数
  8. */
  9. public function __construct($name,$password){
  10. $this->name = $name;
  11. $this->password = $password;
  12. }
  13. public function insert(){
  14. $db = new DB();
  15. $resultid = $db->insertData("user",array(),array('',$this->name,$this->password));
  16. return $resultid;
  17. }
  18. public static function getUserById($uid){
  19. $db = new DB();
  20. return $db->getDataByAtr("user",'uid',$uid);
  21. }
  22. public static function getUserByName($name){
  23. $db = new DB();
  24. @$data = $db->getObjListBySql("SELECT * FROM user WHERE name = '$name'");
  25. if(count($data)!=0)return $data;
  26. else return null;
  27. }
  28. public static function getAllUser(){
  29. $db = new DB();
  30. @$data = $db->getObjListBySql("SELECT * FROM user");
  31. if(count($data)!=0) return $data;
  32. else return null;
  33. }
  34. public static function deleteByUid($uid){
  35. $admin = Admin::getAdminById($uid);
  36. $db = new DB();
  37. if($db->delete("user","uid",$uid)) return true;
  38. else return false;
  39. }
  40. }
  41. ?>

测试程序:test.php,代码如下:

  1. <?php
  2. header("Content-Type:text/html; charset=utf8");
  3. require_once("./user.class.php");
  4. $user = new User("HelloWorld","123456");
  5. $user->insert();
  6. $users = User::getAllUser();
  7. foreach ($users as $u) {
  8. echo "<br/>".$u->name."<br/>".$u->password."<br/>";
  9. }
  10. ?>