mysql.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. <?php
  2. #[类库sql]
  3. class db_mysql
  4. {
  5. var $query_count = 0;
  6. var $host;
  7. var $user;
  8. var $pass;
  9. var $data;
  10. var $conn;
  11. var $result;
  12. var $prefix = "yehnet_";
  13. //返回结果集类型,默认是数字+字符
  14. var $rs_type = MYSQL_ASSOC;
  15. var $query_times = 0;#[查询时间]
  16. var $conn_times = 0;#[连接数据库时间]
  17. var $unbuffered = false;#[是否不使用结果缓存集查询功能,默认为不使用]
  18. var $dbcache = false;
  19. var $cache_type = "txt";//缓存类型,默认只支持 txt和mem两种方式
  20. var $cache_folder = "cache/sql_c/";
  21. var $cache_server = "localhost";
  22. var $cache_port = "11211";
  23. var $cache_time = 3600;
  24. var $cache_conn;//连接到缓存类中,主要是用于memcache里
  25. var $cache_status = false;
  26. #[构造函数]
  27. function __construct($config=array())
  28. {
  29. $this->host = $config['host'] ? $config['host'] : 'localhost';
  30. $this->port = $config['port'] ? $config['port'] : '3306';
  31. $this->user = $config['user'] ? $config['user'] : 'root';
  32. $this->pass = $config['pass'] ? $config['pass'] : '';
  33. $this->data = $config['data'] ? $config['data'] : '';
  34. $this->prefix = $config['prefix'] ? $config['prefix'] : 'yehnet_';
  35. if($this->data)
  36. {
  37. $ifconnect = $this->connect();
  38. if(!$ifconnect)
  39. {
  40. return false;
  41. }
  42. }
  43. $this->dbcache = (defined("DB_CACHE") && DB_CACHE == true && $config["cache_time"]>0) ? true : false;
  44. $this->cache_type = $config["cache_type"];
  45. $this->cache_folder = defined("ROOT") ? ROOT.$config["cache_folder"] : $config["cache_folder"];//缓存目录
  46. if(substr($this->cache_folder,-1) != "/")
  47. {
  48. $this->cache_folder .= "/";
  49. }
  50. $this->cache_server = $config["cache_server"];
  51. $this->cache_port = $config["cache_port"];
  52. $this->cache_time = $config["cache_time"];
  53. }
  54. #[兼容PHP4]
  55. function db_mysql($config=array())
  56. {
  57. $this->__construct($config);
  58. }
  59. #[连接数据库]
  60. function connect($database="")
  61. {
  62. $start_time = $this->time_used();
  63. $server = ($this->port && $this->port != "3306") ? $this->host.":".$this->port : $this->host;
  64. $this->conn = mysql_connect($server,$this->user,$this->pass);
  65. if(!$this->conn)
  66. {
  67. return false;
  68. }
  69. $mysql_version = $this->get_version();
  70. if($mysql_version>"4.1")
  71. {
  72. mysql_query("SET NAMES 'utf8'",$this->conn);
  73. }
  74. if($mysql_version>"5.0.1")
  75. {
  76. mysql_query("SET sql_mode=''",$this->conn);
  77. }
  78. $end_time = $this->time_used();
  79. $this->conn_times += round($end_time - $start_time,5);#[连接数据库的时间]
  80. $ifok = $this->select_db($database);
  81. return $ifok ? true : false;
  82. }
  83. //存储缓存
  84. function cache_write($key,$value)
  85. {
  86. if(!$this->dbcache || !$key)
  87. {
  88. return false;
  89. }
  90. $app = sys_init();
  91. return $app->cache_lib->cache_write($key,$value);
  92. }
  93. //读取缓存
  94. function cache_read($key)
  95. {
  96. if(!$this->dbcache || !$key)
  97. {
  98. return false;
  99. }
  100. $app = sys_init();
  101. return $app->cache_lib->cache_read($key);
  102. }
  103. function cache_clear()
  104. {
  105. $app = sys_init();
  106. return $app->cache_lib->cache_clear();
  107. }
  108. function select_db($data="")
  109. {
  110. $database = $data ? $data : $this->data;
  111. if(!$database)
  112. {
  113. return false;
  114. }
  115. $this->data = $database;
  116. $start_time = $this->time_used();
  117. $ifok = mysql_select_db($this->data,$this->conn);
  118. if(!$ifok)
  119. {
  120. return false;
  121. }
  122. $end_time = $this->time_used();
  123. $this->conn_times += round($end_time - $start_time,5);#[连接数据库的时间]
  124. return true;
  125. }
  126. #[关闭数据库连接,当您使用持续连接时该功能失效]
  127. function close()
  128. {
  129. return mysql_close($this->conn);
  130. }
  131. function __destruct()
  132. {
  133. @session_write_close();#[关闭session写入]
  134. return $this->close();
  135. }
  136. function set($name,$value)
  137. {
  138. if($name == "rs_type")
  139. {
  140. $value = strtolower($value) == "num" ? MYSQL_NUM : MYSQL_ASSOC;
  141. }
  142. $this->$name = $value;
  143. }
  144. function query($sql)
  145. {
  146. if(!mysql_ping($this->conn))
  147. {
  148. $this->close();
  149. $this->connect();
  150. }
  151. $start_time = $this->time_used();
  152. $func = $this->unbuffered && function_exists("mysql_multi_query") ? "mysql_multi_query" : "mysql_query";
  153. $this->result = $func($sql,$this->conn);
  154. $this->query_count++;
  155. $end_time = $this->time_used();
  156. $this->query_times += round($end_time - $start_time,5);#[查询时间]
  157. if(!$this->result)
  158. {
  159. return false;
  160. }
  161. return $this->result;
  162. }
  163. function get_all($sql="",$primary="")
  164. {
  165. $cache_key = "";
  166. if($sql && $this->dbcache)
  167. {
  168. $cache_key = md5($sql);
  169. $rs = $this->cache_read($cache_key);
  170. if($rs)
  171. {
  172. return $rs;
  173. }
  174. }
  175. $result = $sql ? $this->query($sql) : $this->result;
  176. if(!$result)
  177. {
  178. return false;
  179. }
  180. $start_time = $this->time_used();
  181. while($rows = mysql_fetch_array($result,$this->rs_type))
  182. {
  183. if($primary && $rows[$primary])
  184. {
  185. $rs[$rows[$primary]] = $rows;
  186. }
  187. else
  188. {
  189. $rs[] = $rows;
  190. }
  191. }
  192. $end_time = $this->time_used();
  193. $this->query_times += round($end_time - $start_time,5);#[查询时间]
  194. $this->cache_write($cache_key,$rs);
  195. return ($rs ? $rs : false);
  196. }
  197. function get_one($sql="")
  198. {
  199. $cache_key = "";
  200. if($sql && $this->dbcache)
  201. {
  202. $cache_key = md5($sql);
  203. $rs = $this->cache_read($cache_key);
  204. if($rs)
  205. {
  206. return $rs;
  207. }
  208. }
  209. $start_time = $this->time_used();
  210. $result = $sql ? $this->query($sql) : $this->result;
  211. if(!$result)
  212. {
  213. return false;
  214. }
  215. $rows = mysql_fetch_array($result,$this->rs_type);
  216. $end_time = $this->time_used();
  217. $this->query_times += round($end_time - $start_time,5);#[查询时间]
  218. $this->cache_write($cache_key,$rows);
  219. return $rows;
  220. }
  221. function insert_id($sql="")
  222. {
  223. if($sql)
  224. {
  225. $rs = $this->get_one($sql);
  226. return $rs;
  227. }
  228. else
  229. {
  230. return mysql_insert_id($this->conn);
  231. }
  232. }
  233. function insert($sql)
  234. {
  235. $this->result = $this->query($sql);
  236. $id = $this->insert_id();
  237. return $id;
  238. }
  239. function all_array($table,$condition="",$orderby="")
  240. {
  241. if(!$table)
  242. {
  243. return false;
  244. }
  245. $table = $this->prefix.$table;
  246. $sql = "SELECT * FROM ".$table;
  247. if($condition && is_array($condition) && count($condition)>0)
  248. {
  249. $sql_fields = array();
  250. foreach($condition AS $key=>$value)
  251. {
  252. $sql_fields[] = "`".$key."`='".$value."' ";
  253. }
  254. $sql .= " WHERE ".implode(" AND ",$sql_fields);
  255. }
  256. if($orderby)
  257. {
  258. $sql .= " ORDER BY ".$orderby;
  259. }
  260. $rslist = $this->get_all($sql);
  261. return $rslist;
  262. }
  263. function one_array($table,$condition="")
  264. {
  265. if(!$table)
  266. {
  267. return false;
  268. }
  269. $table = $this->prefix.$table;
  270. $sql = "SELECT * FROM ".$table;
  271. if($condition && is_array($condition) && count($condition)>0)
  272. {
  273. $sql_fields = array();
  274. foreach($condition AS $key=>$value)
  275. {
  276. $sql_fields[] = "`".$key."`='".$value."' ";
  277. }
  278. $sql .= " WHERE ".implode(" AND ",$sql_fields);
  279. }
  280. $rslist = $this->get_one($sql);
  281. return $rslist;
  282. }
  283. //将数组写入数据中
  284. function insert_array($data,$table,$insert_type="insert")
  285. {
  286. if(!$table || !is_array($data) || !$data)
  287. {
  288. return false;
  289. }
  290. $table = $this->prefix.$table;//自动增加表前缀
  291. if($insert_type == "insert")
  292. {
  293. $sql = "INSERT INTO ".$table;
  294. }
  295. else
  296. {
  297. $sql = "REPLACE INTO ".$table;
  298. }
  299. $sql_fields = array();
  300. $sql_val = array();
  301. foreach($data AS $key=>$value)
  302. {
  303. $sql_fields[] = "`".$key."`";
  304. $sql_val[] = "'".$value."'";
  305. }
  306. $sql.= "(".(implode(",",$sql_fields)).") VALUES(".(implode(",",$sql_val)).")";
  307. //file_put_contents("data/tmp/".md5($sql).".sql",$sql);
  308. return $this->insert($sql);
  309. }
  310. //更新数据
  311. function update_array($data,$table,$condition)
  312. {
  313. if(!$data || !$table || !$condition || !is_array($data) || !is_array($condition))
  314. {
  315. return false;
  316. }
  317. $table = $this->prefix.$table;//自动增加表前缀
  318. $sql = "UPDATE ".$table." SET ";
  319. $sql_fields = array();
  320. foreach($data AS $key=>$value)
  321. {
  322. $sql_fields[] = "`".$key."`='".$value."'";
  323. }
  324. $sql.= implode(",",$sql_fields);
  325. $sql_fields = array();
  326. foreach($condition AS $key=>$value)
  327. {
  328. $sql_fields[] = "`".$key."`='".$value."' ";
  329. }
  330. $sql .= " WHERE ".implode(" AND ",$sql_fields);
  331. //echo $sql;
  332. //exit;
  333. //file_put_contents("data/tmp/".md5($sql).".sql",$sql);
  334. return $this->query($sql);
  335. }
  336. function count($sql="")
  337. {
  338. if($sql)
  339. {
  340. $this->rs_type = MYSQL_NUM;
  341. $this->query($sql);
  342. $rs = $this->get_one();
  343. $this->rs_type = MYSQL_ASSOC;
  344. return $rs[0];
  345. }
  346. else
  347. {
  348. return mysql_num_rows($this->result);
  349. }
  350. }
  351. function num_fields($sql="")
  352. {
  353. if($sql)
  354. {
  355. $this->query($sql);
  356. }
  357. return mysql_num_fields($this->result);
  358. }
  359. function list_fields($table)
  360. {
  361. $rs = $this->get_all("SHOW COLUMNS FROM ".$table);
  362. if(!$rs)
  363. {
  364. return false;
  365. }
  366. foreach($rs AS $key=>$value)
  367. {
  368. $rslist[] = $value["Field"];
  369. }
  370. return $rslist;
  371. }
  372. #[显示表名]
  373. function list_tables()
  374. {
  375. $rs = $this->get_all("SHOW TABLES");
  376. return $rs;
  377. }
  378. function table_name($table_list,$i)
  379. {
  380. return $table_list[$i];
  381. }
  382. function escape_string($char)
  383. {
  384. if(!$char)
  385. {
  386. return false;
  387. }
  388. return mysql_escape_string($char);
  389. }
  390. function get_version()
  391. {
  392. return mysql_get_server_info($this->conn);
  393. }
  394. function time_used()
  395. {
  396. $time = explode(" ",microtime());
  397. $used_time = $time[0] + $time[1];
  398. return $used_time;
  399. }
  400. //Mysql的查询时间
  401. function conn_times()
  402. {
  403. return $this->conn_times + $this->query_times;
  404. }
  405. //MySQL查询资料
  406. function conn_count()
  407. {
  408. return $this->query_count;
  409. }
  410. function close_cache()
  411. {
  412. if($this->dbcache)
  413. {
  414. $this->dbcache = false;
  415. }
  416. }
  417. function open_cache()
  418. {
  419. if(defined("DB_CACHE") && DB_CACHE == true && $this->cache_time > 0)
  420. {
  421. $this->dbcache = true;
  422. }
  423. }
  424. function set_cache_time($time=0)
  425. {
  426. $this->cache_time = $time;
  427. if($time<1)
  428. {
  429. $this->dbcache = false;
  430. }
  431. }
  432. }
  433. ?>