>백엔드 개발 >PHP 튜토리얼 >PHP PDO 데이터베이스 작업 클래스

PHP PDO 데이터베이스 작업 클래스

WBOY
WBOY원래의
2016-07-25 08:42:001088검색
複製程式碼

간단한 PDO 클래스 패키지입니다. . 학습과 소통을 위해서만

PdoDb 데이터베이스 클래스

  1. /**
  2. * @throws 오류
  3. * PDO 데이터베이스
  4. */
  5. PdoDb 클래스는 DatabaseAbstract를 확장합니다
  6. {
  7. /**
  8. * PDO 인스턴스
  9. * @var PDO
  10. */
  11. protected $DB;
  12. /**
  13. * PDO 준비문
  14. * @var PDOStatement
  15. */
  16. protected $Stmt;
  17. /**
  18. * 마지막 SQL 문
  19. * @var string
  20. */
  21. protected $Sql;
  22. /* *
  23. * 구성 정보 $config=array('dsn'=>xxx,'name'=>xxx,'password'=>xxx,'option'=>xxx)
  24. * @var array
  25. */
  26. protected $Config;
  27. /**
  28. * 생성자
  29. * @param array $config
  30. */
  31. 공개 함수 __construct($config)
  32. {
  33. $this->Config = $config;
  34. }
  35. /**
  36. * 데이터베이스에 연결
  37. * @return void
  38. */
  39. 공개 함수 connect()
  40. {
  41. $this->DB = new PDO($this- >Config['dsn'], $this->Config['name'], $this->Config['password'], $this->Config['option']);
  42. / /默认把结果序列化成stdClass
  43. $this->DB->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
  44. //自己写代码捕获Exception
  45. $this-> DB->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
  46. }
  47. /**
  48. * 연결 끊기
  49. * @return void
  50. */
  51. 공용 함수 disConnect()
  52. {
  53. $this->DB = null;
  54. $this->Stmt = null;
  55. }
  56. /**
  57. * sql을 실행하고 새로 추가된 id를 반환
  58. * @param string $statement
  59. * @return string
  60. */
  61. 공개 함수 exec($statement)
  62. {
  63. if ($this->DB->exec($statement)) {
  64. $this->Sql = $statement;
  65. return $this->lastId();
  66. }
  67. $this->errorMessage();
  68. }
  69. /**
  70. * 查询sql
  71. * @param string $statement
  72. * @return PdoDb
  73. */
  74. 공개 함수 쿼리($statement)
  75. {
  76. $res = $this->DB->query($statement);
  77. if ($res) {
  78. $this->Stmt = $res;
  79. $this->Sql = $statement;
  80. return $this;
  81. }
  82. $this->errorMessage();
  83. }
  84. /**
  85. * 데이터를 한 번 직렬화
  86. * @return 혼합
  87. */
  88. 공개 함수 fetchOne()
  89. {
  90. return $this->Stmt->fetch();
  91. }
  92. /**
  93. * 모든 데이터 직렬화
  94. * @return 배열
  95. */
  96. 공용 함수 fetchAll()
  97. {
  98. return $this->Stmt->fetchAll();
  99. }
  100. /**
  101. * 마지막 추가 아이디
  102. * @return 문자열
  103. */
  104. 공개 함수 lastId()
  105. {
  106. return $this->DB->lastInsertId();
  107. }
  108. /**
  109. * 영향을 받은 행 수
  110. * @return int
  111. */
  112. 공개 함수affectRows()
  113. {
  114. return $this->Stmt->rowCount();
  115. }
  116. /**
  117. * 준비된 문장
  118. * @param string $statement
  119. * @return PdoDb
  120. */
  121. 공개 함수 prepare($statement)
  122. {
  123. $res = $this->DB->prepare($statement);
  124. if ($res) {
  125. $this->Stmt = $res;
  126. $this->Sql = $statement;
  127. return $this;
  128. }
  129. $this->errorMessage();
  130. }
  131. /**
  132. * 데이터 바인딩
  133. * @param array $array
  134. * @return PdoDb
  135. */
  136. 공용 함수 binArray ($array)
  137. {
  138. foreach ($array as $k => $v) {
  139. if (is_array($v)) {
  140. //배열이 있음 array('value'=>xxx,'type'=>PDO::PARAM_XXX)
  141. $ this->Stmt->bindValue($k 1, $v['value'], $v['type']);
  142. } else {
  143. $this->Stmt->bindValue ($k 1, $v, PDO::PARAM_STR);
  144. }
  145. }
  146. return $this;
  147. }
  148. /**
  149. * 준비된 문장 실행
  150. * @return bool
  151. */
  152. 공용 함수 실행()
  153. {
  154. if ($this->Stmt->execute()) {
  155. return true;
  156. }
  157. $this->errorMessage();
  158. }
  159. /**
  160. * 거래 시작
  161. * @return bool
  162. */
  163. 공개 함수 startTransaction()
  164. {
  165. return $this->DB->beginTransaction();
  166. }
  167. /**
  168. * 트랜잭션 실행
  169. * @return bool
  170. */
  171. 공개 함수 commitTransaction()
  172. {
  173. return $this->DB->commit();
  174. }
  175. /**
  176. * 回滾事務
  177. * @return bool
  178. */
  179. public function rollbackTransaction()
  180. {
  181. return $this->DB->rollBack();
  182. }
  183. /**
  184. * 拋出錯誤
  185. * @throws Error
  186. * @return void
  187. */
  188. public function errorMessage()
  189. {
  190. $msg = $this->DB->errorInfo();
  191. throw new Error('資料庫錯誤:' $msg[2]);
  192. }
  193. //---------------------
  194. /* *
  195. * 單例實例
  196. * @var PdoDb
  197. * /
  198. protected static $_instance;
  199. /**
  200. * 預設資料庫
  201. * @static
  202. * @param array $config
  203. * @return PdoDb
  204. */
  205. 公用靜態函式實例($config)
  206. {
  207. if (!self ::$_instance instanceof PdoDb) {
  208. self::$_instance = new PdoDb($config);
  209. self::$_instance->connect();
  210. }
  211. return self:: $_instance;
  212. }
  213. //------------------------
  214. /**
  215. * 取得PDO支援的資料庫
  216. * @static
  217. * @return array
  218. * /
  219. public static function getSupportDriver(){
  220. return PDO::getAvailableDrivers();
  221. }
  222. /**
  223. * 取得資料庫的版本資訊
  224. * @return array
  225. */
  226. public function getDriverVersion(){*/
  227. public function getDriverVersion(){ $
  228. public function getDriverVersion(){ $
  229. public function getDriverVersion(){ $ name = $name. ->DB->getAttribute(PDO::ATTR_DRIVER_NAME);
  230. 返回數組($name=>$this->DB->getAttribute(PDO::ATTR_CLIENT_VERSION));
}
}

複製程式碼

使用的時候
PdoDb::instance($config);


PHP、PDO
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.