cache_model.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. class cache_model extends Model
  3. {
  4. var $langid = "zh";
  5. var $cache_time = 3600;
  6. function __construct()
  7. {
  8. parent::Model();
  9. }
  10. function cache_model()
  11. {
  12. $this->__construct();
  13. }
  14. function langid($langid="zh")
  15. {
  16. $this->langid = $langid;
  17. }
  18. function get_all()
  19. {
  20. $sql = "DELETE FROM ".$this->db->prefix."cache WHERE postdate<'".(time()-$this->cache_time)."' ";
  21. $this->db->query($sql);
  22. $this->db->close_cache();
  23. $sql = "SELECT * FROM ".$this->db->prefix."cache WHERE langid='".$this->langid."'";
  24. $rslist = $this->db->get_all($sql);
  25. if(!$rslist)
  26. {
  27. return false;
  28. }
  29. $rs = array();
  30. foreach($rslist AS $key=>$value)
  31. {
  32. $rs[$value["id"]]["content"] = $value["content"];
  33. $rs[$value["id"]]["date"] = $value["postdate"];
  34. }
  35. unset($rslist);
  36. return $rs;
  37. }
  38. function update($key,$value)
  39. {
  40. $sql = "REPLACE INTO ".$this->db->prefix."cache(id,langid,content,postdate) VALUES('".$key."','".$this->langid."','".$value."','".time()."')";
  41. return $this->db->query($sql);
  42. }
  43. //清空
  44. function clear()
  45. {
  46. $sql = "TRUNCATE TABLE ".$this->db->prefix."cache ";
  47. return $this->db->query($sql);
  48. }
  49. //清除超过当前时间1天的购物车信息
  50. function clear_cart()
  51. {
  52. $time = time() - 3600*24;
  53. $sql = "DELETE FROM ".$this->db->prefix."cart WHERE postdate<'".$time."'";
  54. return $this->db->query($sql);
  55. }
  56. }
  57. ?>