> 백엔드 개발 > PHP 튜토리얼 > 읽기와 쓰기 분리를 지원하는 PHP로 구현된 MySQL 클래스

읽기와 쓰기 분리를 지원하는 PHP로 구현된 MySQL 클래스

WBOY
풀어 주다: 2016-07-25 08:56:07
원래의
937명이 탐색했습니다.
  1. /**

  2. * MySQL 읽기-쓰기 분리 클래스
  3. * $db_config = array(
  4. * 'master' => array('host'=>'localhost:3306','user'=>' admin ','passwd'=>'123456','db'=>'stat'),
  5. * 'slave' => array(
  6. * array('host'=>'localhost : 3307','user'=>'admin','passwd'=>'123456','db'=>'stat'),
  7. * array('host'=>'localhost: 3308 ','user'=>'admin','passwd'=>'123456','db'=>'stat')
  8. * )
  9. * );
  10. *
  11. * 참고: 슬레이브가 여러 개인 경우 무작위로 연결하세요
  12. * 최종 편집: bbs.it-home.org
  13. */
  14. /*
  15. $db_config = 배열(
  16. '마스터' => array('host'=>'localhost:3306','user'=>'admin','passwd'=>'123456','db'=>' stat'),
  17. '슬레이브' => array(
  18. array('host'=>'localhost:3307','user'=>'admin','passwd'=>'123456 ','db'=>'stat'),
  19. array('host'=>'localhost:3308','user'=>'admin','passwd'=>'123456', 'db'=>'stat')
  20. )
  21. );

  22. $db = MySQL::getInstance('','r-w');< ;/p>

  23. $sql = "관리자에서 * 선택";

  24. $rs = $db->query($sql);

  25. while ($row = $db->fetch($rs)){
  26. echo "uid:".$row['uid']." ".$row['userName']."
    ";
  27. }

  28. echo "


    ";
  29. */

  30. class MySQL

  31. {
  32. private static $_instance = null;//数据库连接实例
  33. private static $_master = null;//主数据库连接实例
  34. private static $_slave = null;//중요数据库连接实
  35. public $_config = array();//数据库连接配置信息
  36. public $_res = null;//查询实例句柄
  37. public $_flag = '';//标识当前语句是主还是重数据库上执行
  38. public $_link = null;
  39. /**
  40. * 单实例
  41. * 여기에 설명을 입력하세요...
  42. * @paramknown_type $dbname
  43. * @paramknown_type $mode
  44. */
  45. public static function & getInstance($dbname='',$mode='rw '){
  46. if (is_null(self::$_instance)){
  47. self::$_instance = new self();
  48. self::$_instance->__getConf();
  49. self::$_instance->connect($dbname,$mode);
  50. }
  51. return self::$_instance;
  52. }

  53. /**

  54. * 데이터베이스 구성 정보 가져오기
  55. * 여기에 설명을 입력하세요...
  56. */
  57. 공용 함수 __getConf(){
  58. 전역 $db_config;
  59. $this->_config['master'] = $db_config['master'];
  60. $this->_config['slave'] = $db_config['slave'];
  61. }
  62. /**
  63. * 데이터베이스 연결
  64. * 여기에 설명을 입력하세요...
  65. * @param $dbname은 연결할 데이터베이스 이름을 기본적으로 지정합니다.
  66. * @param $mode rw는 연결 기본 라이브러리를 나타내고 r-w는 읽기 및 쓰기 분리를 의미합니다
  67. */
  68. 공개 함수 connect($dbname='' ,$mode = 'rw'){
  69. if($mode == 'rw'){
  70. if(is_null(self::$_master)){
  71. $this->_master = $this ->_slave = $this->conn_master($dbname);
  72. }
  73. }else{
  74. if(is_null(self::$_master)){
  75. $this->_master = $this->conn_master($dbname);
  76. }
  77. if(is_null(self::$_slave)){
  78. $this->_slave = $this->conn_slave($dbname );
  79. }
  80. }
  81. }
  82. /**
  83. * 메인 데이터베이스 서버에 연결
  84. * 여기에 설명을 입력하세요...
  85. */
  86. 공개 함수 conn_master($dbname=''){
  87. $_link = mysql_connect( $this->_config['master']['host'],$this->_config['master']['user'],$this->_config['master']['passwd'] ,true) 또는 종료("Connect ".$this->_config['master']['host']." 실패.");
  88. mysql_select_db(empty($dbname)?$this->_config ['master']['db']:$dbname,$_link) 또는 die(" DB 이름 ".$this->_config['master']['db']."가 존재하지 않습니다.") ;
  89. mysql_query("set names utf8",$_link);
  90. return $_link;
  91. }
  92. /**
  93. * 슬레이브 데이터베이스 서버에 연결
  94. * 여기에 설명을 입력하세요...
  95. */
  96. 공개 함수 conn_slave($dbname=''){
  97. $offset = rand(0,count($this->_config['slave') ])-1);
  98. $_link = @mysql_connect($this->_config['slave'][$offset]['host'],$this->_config['slave'][$offset ]['user'],$this->_config['slave'][$offset]['passwd'],true) 또는 die(" 연결 ".$this->_config['slave'][$ offset]['host']." 실패.");
  99. mysql_select_db(empty($dbname)?$this->_config['slave'][$offset]['db']:$dbname,$ _link) 또는 die(" DB 이름 ".$this->_config['slave'][$offset]['db']."가 존재하지 않습니다.");
  100. mysql_query("set names utf8" ,$_link);
  101. $_link 반환
  102. }

  103. /**

  104. * 데이터베이스 쿼리 실행
  105. * 여기에 설명을 입력하세요...
  106. * @param string $sql
  107. */
  108. 공개 함수 쿼리($sql,$master=true){

  109. if($master == true || (substr(strtolower($sql),0,6) != 'select') && $master == false){

  110. $this->_res = mysql_query($sql ,$this->_master);
  111. if(!$this->_res){
  112. $this->_error[] = mysql_error($this->_master);
  113. }
  114. $this->_flag = '마스터';
  115. $this->_link = $this->_master;
  116. } else {
  117. $this->_res = mysql_query($sql ,$this->_slave);
  118. if(!$this->_res){
  119. $this->_error[] = mysql_error($this->_slave);
  120. }
  121. $this->_flag = 'slave';
  122. $this->_link = $this->_slave;
  123. }

  124. return $this->_res;

  125. }
  126. /**
  127. * 단일 레코드 행 가져오기
  128. * 여기에 설명 입력 ...
  129. * @param 혼합 $rs
  130. */
  131. 공용 함수 get($rs=''){
  132. if(empty($rs) ){
  133. $rs = $this->_res;
  134. }
  135. return mysql_fetch_row($rs);
  136. }
  137. /**
  138. * 여러 줄 레코드 가져오기
  139. * 여기에 설명을 입력하세요 ...
  140. * @param mix $rs
  141. * @param $result_type
  142. */
  143. 공용 함수 fetch($rs = ''){
  144. if(empty($rs)){
  145. $rs = $this->_res;
  146. }
  147. return mysql_fetch_array($rs,MYSQL_ASSOC );
  148. }
  149. /**
  150. * 데이터 삽입
  151. * 여기에 설명을 입력하세요...
  152. * @paramknown_type $sql
  153. */
  154. 공용 함수 add($sql){
  155. $rs = $this->query($sql);
  156. if($rs)
  157. return mysql_insert_id($this->_link);
  158. return false;
  159. }
  160. /**
  161. * 데이터 업데이트
  162. * 여기에 설명을 입력하세요...
  163. * @paramknown_type $sql
  164. */
  165. 공개 함수 업데이트 ($sql){
  166. if(empty($sql)) return false;
  167. $rs = $this->query($sql);
  168. if($rs)
  169. return $this ->fetchNum();
  170. return false;
  171. }

  172. /**

  173. * 이전 명령문의 영향을 받은 행 수 가져오기
  174. * 여기에 설명 입력...
  175. */
  176. 공용 함수 fetchNum(){
  177. return mysql_affected_rows($this->_link);
  178. }
  179. /**
  180. * 소멸자, 데이터베이스 연결 리소스 해제
  181. * 여기에 설명을 입력하세요...
  182. */
  183. 공개 함수 __destruct(){
  184. mysql_close($this->_link);
  185. }
  186. }

复主代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿