file.php 1.1 KB

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