首页 > 开发 > PHP > 正文

php中PDO方式实现数据库的增删改查

2024-05-04 23:35:18
字体:
来源:转载
供稿:网友

PDO是mysql数据库操作的一个公用类了,我们不需要进行自定类就可以直接使用pdo来操作数据库了,但是在php默认配置中pdo是未开启所以我们必须先在php.ini中开启它才可以使用。

需要开启php的pdo支持,php5.1以上版本支持

实现数据库连接单例化,有三要素 静态变量、静态实例化方法、私有构造函数 DPDO.php

 

 
  1. class DPDO{ 
  2. private $DSN
  3. private $DBUser
  4. private $DBPwd
  5. private $longLink
  6. private $pdo
  7. //私有构造函数 防止被直接实例化 
  8. private function __construct($dsn$DBUser$DBPwd$longLink = false) { 
  9. $this->DSN = $dsn
  10. $this->DBUser = $DBUser
  11. $this->DBPwd = $DBPwd
  12. $this->longLink = $longLink
  13. $this->connect(); 
  14. //私有 空克隆函数 防止被克隆 
  15. private function __clone(){} 
  16. //静态 实例化函数 返回一个pdo对象 
  17. static public function instance($dsn$DBUser$DBPwd$longLink = false){ 
  18. static $singleton = array();//静态函数 用于存储实例化对象 
  19. $singIndex = md5($dsn . $DBUser . $DBPwd . $longLink); 
  20. if (emptyempty($singleton[$singIndex])) { 
  21. $singleton[$singIndex] = new self($dsn$DBUser$DBPwd$longLink = false); 
  22. return $singleton[$singIndex]->pdo; 
  23.  
  24. private function connect(){ 
  25. try{ 
  26. if($this->longLink){ 
  27. $this->pdo = new PDO($this->DSN, $this->DBUser, $this->DBPwd, array(PDO::ATTR_PERSISTENT => true)); 
  28. }else
  29. $this->pdo = new PDO($this->DSN, $this->DBUser, $this->DBPwd); 
  30. $this->pdo->query('SET NAMES UTF-8'); 
  31. } catch(PDOException $e) { 
  32. die('Error:' . $e->getMessage() . '<br/>'); 

用于处理字段映射,使用pdo的字段映射,可以有效避免sql注入

 

 
  1. //字段关联数组处理, 主要用于写入和更新数据、同and 或 or 的查询条件,产生sql语句和映射字段的数组 
  2. public function FDFields($data$link = ','$judge = array(), $aliasTable = ''){ 
  3. $sql = ''
  4. $mapData = array(); 
  5. foreach($data as $key => $value) { 
  6. $mapIndex = ':' . ($link != ',' ? 'c' : '') . $aliasTable . $key
  7. $sql .= ' ' . ($aliasTable ? $aliasTable . '.' : '') . '`' . $key . '` ' . ($judge[$key] ? $judge[$key] : '=') . ' ' . $mapIndex . ' ' . $link
  8. $mapData[$mapIndex] = $value
  9. $sql = trim($sql$link); 
  10. return array($sql$mapData); 
  11. //用于处理单个字段处理 
  12. public function FDField($field$value$judge = '='$preMap = 'cn'$aliasTable = '') { 
  13. $mapIndex = ':' . $preMap . $aliasTable . $field
  14. $sql = ' ' . ($aliasTable ? $aliasTable . '.' : '') . '`' . $field . '`' . $judge . $mapIndex
  15. $mapData[$mapIndex] = $value
  16. return array($sql$mapData); 
  17. //使用刚方法可以便捷产生查询条件及对应数据数组 
  18. public function FDCondition($condition$mapData) { 
  19. if(is_string($condition)) { 
  20. $where = $condition
  21. else if (is_array($condition)) { 
  22. if($condition['str']) { 
  23. if (is_string($condition['str'])) { 
  24. $where = $condition['str']; 
  25. else { 
  26. return false; 
  27. if(is_array($condition['data'])) { 
  28. $link = $condition['link'] ? $condition['link'] : 'and'
  29. list($conSql$mapConData) = $this->FDFields($condition['data'], $link$condition['judge']); 
  30. if ($conSql) { 
  31. $where .= ($where ? ' ' . $link : '') . $conSql
  32. $mapData = array_merge($mapData$mapConData); 
  33. return array($where$mapData); 

增删改查的具体实现DB.php

 

 
  1. public function fetch($sql$searchData = array(), $dataMode = PDO::FETCH_ASSOC, $preType = array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY)) { 
  2. if ($sql) { 
  3. $sql .= ' limit 1'
  4. $pdoStatement = $this->pdo->prepare($sql$preType); 
  5. $pdoStatement->execute($searchData); 
  6. return $data = $pdoStatement->fetch($dataMode); 
  7. else { 
  8. return false; 
  9.  
  10. public function fetchAll($sql$searchData = array(), $limit = array(0, 10), $dataMode = PDO::FETCH_ASSOC, $preType = array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY)) { 
  11. if ($sql) { 
  12. $sql .= ' limit ' . (int) $limit[0] . ',' . (intval($limit[1]) > 0 ? intval($limit[1]) : 10); 
  13. $pdoStatement = $this->pdo->prepare($sql$preType); 
  14. $pdoStatement->execute($searchData); 
  15. return $data = $pdoStatement->fetchAll($dataMode); 
  16. else { 
  17. return false; 
  18.  
  19. public function insert($tableName$data$returnInsertId = false, $replace = false) { 
  20. if(!emptyempty($tableName) && count($data) > 0){ 
  21. $sql = $replace ? 'REPLACE INTO ' : 'INSERT INTO '
  22. list($setSql$mapData) = $this->FDFields($data); 
  23. $sql .= $tableName . ' set ' . $setSql
  24. $pdoStatement = $this->pdo->prepare($sqlarray(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY)); 
  25. $execRet = $pdoStatement->execute($mapData); 
  26. return $execRet ? ($returnInsertId ? $this->pdo->lastInsertId() : $execRet) : false; 
  27. else { 
  28. return false; 
  29.  
  30. public function update($tableName$data$condition$mapData = array(), $returnRowCount = true) { 
  31. if(!emptyempty($tableName) && count($data) > 0) { 
  32. $sql = 'UPDATE ' . $tableName . ' SET '
  33. list($setSql$mapSetData) = $this->FDFields($data); 
  34. $sql .= $setSql
  35. $mapData = array_merge($mapData$mapSetData); 
  36. list($where$mapData) = $this->FDCondition($condition$mapData); 
  37. $sql .= $where ? ' WHERE ' . $where : ''
  38. $pdoStatement = $this->pdo->prepare($sqlarray(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY)); 
  39. $execRet = $pdoStatement->execute($mapData); 
  40. return $execRet ? ($returnRowCount ? $pdoStatement->rowCount() : $execRet) : false; 
  41. else { 
  42. return false; 
  43.  
  44. public function delete($tableName$condition$mapData = array()) { 
  45. if(!emptyempty($tableName) && $condition){ 
  46. $sql = 'DELETE FROM ' . $tableName
  47. list($where$mapData) = $this->FDCondition($condition$mapData); 
  48. $sql .= $where ? ' WHERE ' . $where : ''
  49. $pdoStatement = $this->pdo->prepare($sqlarray(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY)); 
  50. $execRet = $pdoStatement->execute($mapData); 
  51. return $execRet

测试文件test.php

 

 
  1. header("Content-type: text/html; charset=utf-8"); 
  2. define('APP_DIR', dirname(__FILE__)); 
  3.  
  4. if (function_exists('spl_autoload_register')) { 
  5. spl_autoload_register('autoClass'); 
  6. else { 
  7. function __auto_load($className){ 
  8. autoClass($className); 
  9.  
  10. function autoClass($className){ 
  11. try{ 
  12. require_once APP_DIR.'/class/'.$className.'.php'
  13. } catch (Exception $e) { 
  14. die('Error:' . $e->getMessage() . '<br />'); 
  15. $DB = new DB(); 
  16. //插入 
  17. $inData['a'] = rand(1, 100); 
  18. $inData['b'] = rand(1, 1000); 
  19. $inData['c'] = rand(1,200) . '.' . rand(1,100); 
  20. $ret = $DB->insert('a'$inData); 
  21. echo '插入' . ($ret ? '成功' : '失败') . '<br/>'
  22. //更新 
  23. $upConData['a'] = 100; 
  24. $upConJudge['a'] = '<'
  25. $upConData['b'] = 30; 
  26. $upConJudge['b'] = '>'
  27. list($upConStr$mapUpConData) = $DB->FDField('b', 200, '<''gt'); 
  28. $condition = array
  29. 'str' => $upConStr
  30. 'data' => $upConData
  31. 'judge' => $upConJudge
  32. 'link' => 'and' 
  33. ); 
  34. $upData['a'] = rand(1, 10); 
  35. $upData['b'] = 1; 
  36. $upData['c'] = 1.00; 
  37. $changeRows = $DB->update('a'$upData$condition$mapUpConData); 
  38. echo '更新行数:' . (int) $changeRows . '<br/>'
  39. //删除 
  40. $delVal = rand(1, 10); 
  41. list($delCon$mapDelCon) = $DB->FDField('a'$delVal); 
  42. $delRet = $DB->delete('a'$delCon$mapDelCon); 
  43. echo '删除a=' . $delVal . ($delRet ? '成功' : '失败') . '<br/>'
  44.  
  45. //查询 
  46. $data['a'] = '10'
  47. $judge['a'] = '>'
  48. $data['b'] = '400'
  49. $judge['b'] = '<'
  50. list($conSql$mapConData) = $DB->FDFields($data'and'$judge); 
  51. $mData = $DB->fetch('select * from a where ' . $conSql . ' order by `a` desc'$mapConData); 
  52.  
  53. var_dump($mData); 

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表