You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB

  1. <?php
  2. /**
  3. * Класс кеша.
  4. * Отвечает за киширование результатов выполнения действий.
  5. *
  6. */
  7. final class Cache
  8. {
  9. private $cache_file;
  10. private $cache_time;
  11. function __construct($cache_name, $cache_time)
  12. {
  13. $this->cache_time = (int) $cache_time;
  14. $this->cache_file = CACHE_PATH.'/'.$cache_name;
  15. }
  16. /**
  17. * Сохраняет кэш в файл
  18. *
  19. * @return boolean - сохранил или нет
  20. */
  21. function save($data)
  22. {
  23. if ($this->cache_time != 0) {
  24. return (bool) file_put_contents($this->cache_file, $data);
  25. }
  26. return false;
  27. }
  28. /**
  29. * Достает кэш из файла
  30. *
  31. * @return string - содержимое кеша
  32. */
  33. function load()
  34. {
  35. return file_get_contents($this->cache_file);
  36. }
  37. /**
  38. * Проверяет, закешированы ли данные с таким именем
  39. *
  40. * @return boolean - закеширован или нет
  41. */
  42. function isCached()
  43. {
  44. if (! file_exists($this->cache_file)) {
  45. return false;
  46. }
  47. if ($this->cache_time > 0 && $this->cache_time + filemtime($this->cache_file) < TIME_NOW) {
  48. return false;
  49. }
  50. return true;
  51. }
  52. }
  53. ?>