cache.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <?php
  2. class cache_lib
  3. {
  4. var $iscache = false;
  5. var $cache_type = "txt";
  6. var $langid = "zh";
  7. var $cache_server = "localhost";
  8. var $cache_port = "11211";
  9. var $app;
  10. var $cache_status = false;
  11. var $txt_line = "[§[№[※[◆]※]№]§]";
  12. var $txt_split = "[◆[№[-[※]-]№]◆]";
  13. var $cache_time = 3600;
  14. var $cache_rs;
  15. function __construct()
  16. {
  17. }
  18. function cache_lib()
  19. {
  20. $this->__construct();
  21. }
  22. function load_setting()
  23. {
  24. $this->app = sys_init();
  25. if($this->app->db->dbcache)
  26. {
  27. $this->iscache = true;
  28. }
  29. $this->cache_type = $this->app->db->cache_type;
  30. $this->cache_server = $this->app->db->cache_server;
  31. $this->cache_port = $this->app->db->cache_port;
  32. $this->cache_time = $this->app->db->cache_time;
  33. if($this->cache_type == "sql")
  34. {
  35. $this->app->load_model("cache_model",true);//加载SQL里的缓存
  36. }
  37. }
  38. function cache_status($ifopen=false)
  39. {
  40. $this->iscache = $ifopen;
  41. }
  42. //读取缓存信息
  43. function cache_type($cache_type="txt")
  44. {
  45. $this->cache_type = $cache_type;
  46. if($cache_type == "sql")
  47. {
  48. $this->app->load_model("cache_model",true);//加载SQL里的缓存
  49. }
  50. }
  51. function langid($langid="zh")
  52. {
  53. $this->langid = $langid;
  54. }
  55. //针对内存缓存的操作
  56. function mem_server($server="localhost",$port="11211")
  57. {
  58. $this->cache_server = $server;
  59. $this->cache_port = $port;
  60. }
  61. function cache_connect_server()
  62. {
  63. if(!$this->iscache)
  64. {
  65. return false;
  66. }
  67. //如果服务器使用memcache缓存,则
  68. if($this->cache_type == "mem")
  69. {
  70. $this->cache_conn = new Memcache;
  71. $conn = $this->cache_conn->connect($this->cache_server,$this->cache_port) OR false;
  72. if(!$conn)
  73. {
  74. return false;
  75. }
  76. $this->cache_status = true;//通知系统,缓存已经在运行
  77. }
  78. elseif($this->cache_type == "sql")
  79. {
  80. $this->app->cache_model->langid($this->langid);//设置语言
  81. $this->cache_rs = $this->app->cache_model->get_all();//取得全部模块
  82. }
  83. elseif($this->cache_type == "txt")
  84. {
  85. if(!file_exists(ROOT_DATA."cache_".$this->langid.".php"))
  86. {
  87. return false;
  88. }
  89. $content = file_get_contents(ROOT_DATA."cache_".$this->langid.".php");
  90. if(!$content)
  91. {
  92. return false;
  93. }
  94. $content = str_replace('<?php exit;?>','',$content);
  95. $rs = explode($this->txt_line,$content);
  96. if(!$rs || !is_array($rs))
  97. {
  98. return false;
  99. }
  100. foreach($rs AS $key=>$value)
  101. {
  102. $tmp = explode($this->txt_split,$value);
  103. if($tmp[1] > (time()-$this->cache_time))
  104. {
  105. $this->cache_rs[$tmp[0]]["content"] = $tmp[2];
  106. $this->cache_rs[$tmp[0]]["date"] = $tmp[1];
  107. }
  108. }
  109. unset($rs,$content);
  110. }
  111. }
  112. //存储缓存
  113. function cache_write($key,$value)
  114. {
  115. //echo $key."----".$value;
  116. if(!$this->iscache || !$key || !$value)
  117. {
  118. return false;
  119. }
  120. $value = serialize($value);
  121. if($this->cache_type == "mem" && $this->cache_status)
  122. {
  123. $this->cache_conn->set($key,$value,0,$this->cache_time);
  124. }
  125. elseif($this->cache_type == "sql")
  126. {
  127. $this->app->cache_model->langid($this->langid);
  128. $this->app->cache_model->update($key,$value);
  129. }
  130. else
  131. {
  132. $this->cache_rs[$key]["content"] = $value;
  133. $this->cache_rs[$key]["date"] = time();
  134. }
  135. return true;
  136. }
  137. function cache_write_txt()
  138. {
  139. if(!$this->iscache || $this->cache_type != "txt")
  140. {
  141. return false;
  142. }
  143. $rslist = $this->cache_rs;
  144. if(!$rslist || !is_array($rslist) || count($rslist)<1)
  145. {
  146. return false;
  147. }
  148. $tmparray = array();
  149. foreach($rslist AS $key=>$value)
  150. {
  151. $tmp = array();
  152. $tmp[0] = $key;
  153. $tmp[1] = $value["date"];
  154. $content = $value["content"];
  155. $content = str_replace($this->txt_split,"",$content);
  156. $content = str_replace($this->txt_line,"",$content);
  157. $tmp[2] = $content;
  158. $tmparray[] = implode($this->txt_split,$tmp);
  159. }
  160. $this->file_put_msg(ROOT_DATA."cache_".$this->langid.".php",'<?php exit;?>'.implode($this->txt_line,$tmparray));
  161. return true;
  162. }
  163. function file_put_msg($file="",$content="")
  164. {
  165. if(!$file || !$content)
  166. {
  167. return false;
  168. }
  169. if(function_exists("file_put_contents"))
  170. {
  171. file_put_contents($file,$content);
  172. }
  173. else
  174. {
  175. $handle = fopen($file,"wb");
  176. fwrite($handle,$content);
  177. fclose($handle);
  178. }
  179. return true;
  180. }
  181. //读取缓存
  182. function cache_read($key)
  183. {
  184. if(!$this->iscache || !$key)
  185. {
  186. return false;
  187. }
  188. $time = time() - $this->cache_time;
  189. if($this->cache_type == "mem" && $this->cache_status)
  190. {
  191. $content = $this->cache_conn->get($key);
  192. if(!$content)
  193. {
  194. return false;
  195. }
  196. return unserialize($content);
  197. }
  198. else
  199. {
  200. return $this->cache_rs[$key]["content"] ? unserialize($this->cache_rs[$key]["content"]) : false;
  201. }
  202. }
  203. function cache_clear()
  204. {
  205. if(!$this->iscache)
  206. {
  207. return true;
  208. }
  209. if($this->cache_type == "mem")
  210. {
  211. if(!$this->cache_status)
  212. {
  213. $this->cache_connect_server();
  214. }
  215. $this->cache_conn->flush();
  216. }
  217. elseif($this->cache_type == "sql")
  218. {
  219. $this->app->cache_model->clear();
  220. }
  221. else
  222. {
  223. $handle = opendir(ROOT_DATA);
  224. $array = array();
  225. while(false !== ($myfile = readdir($handle)))
  226. {
  227. if($myfile != "." && $myfile != ".." && $myfile !=".svn") $array[] = ROOT_DATA.$myfile;
  228. }
  229. closedir($handle);
  230. foreach($array AS $key=>$value)
  231. {
  232. if(file_exists($value) && is_file($value))
  233. {
  234. if(substr(basename($value),0,5) == "cache")
  235. {
  236. @unlink($value);
  237. }
  238. }
  239. }
  240. }
  241. return true;
  242. }
  243. function cache_cart()
  244. {
  245. $this->app->load_model("cache_model",true);//加载SQL里的缓存
  246. return $this->app->cache_model->clear_cart();
  247. }
  248. }
  249. ?>