file.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php namespace System\Cache\Driver;
  2. class File implements \System\Cache\Driver {
  3. /**
  4. * All of the loaded cache items.
  5. *
  6. * @var array
  7. */
  8. public $items = array();
  9. /**
  10. * Determine if an item exists in the cache.
  11. *
  12. * @param string $key
  13. * @return bool
  14. */
  15. public function has($key)
  16. {
  17. return ( ! is_null($this->get($key)));
  18. }
  19. /**
  20. * Get an item from the cache.
  21. *
  22. * @param string $key
  23. * @param mixed $default
  24. * @return mixed
  25. */
  26. public function get($key)
  27. {
  28. if (array_key_exists($key, $this->items))
  29. {
  30. return $this->items[$key];
  31. }
  32. if ( ! file_exists(APP_PATH.'storage/cache/'.$key))
  33. {
  34. return null;
  35. }
  36. $cache = file_get_contents(APP_PATH.'storage/cache/'.$key);
  37. if (time() >= substr($cache, 0, 10))
  38. {
  39. $this->forget($key);
  40. return null;
  41. }
  42. return $this->items[$key] = unserialize(substr($cache, 10));
  43. }
  44. /**
  45. * Write an item to the cache.
  46. *
  47. * @param string $key
  48. * @param mixed $value
  49. * @param int $minutes
  50. * @return void
  51. */
  52. public function put($key, $value, $minutes)
  53. {
  54. file_put_contents(APP_PATH.'storage/cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
  55. }
  56. /**
  57. * Delete an item from the cache.
  58. *
  59. * @param string $key
  60. * @return void
  61. */
  62. public function forget($key)
  63. {
  64. @unlink(APP_PATH.'storage/cache/'.$key);
  65. }
  66. }