file.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. private $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, $default = null)
  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 is_callable($default) ? call_user_func($default) : $default;
  35. }
  36. $cache = file_get_contents(APP_PATH.'storage/cache/'.$key);
  37. // Has the cache expired? The UNIX expiration time is stored at the beginning of the file.
  38. if (time() >= substr($cache, 0, 10))
  39. {
  40. $this->forget($key);
  41. return is_callable($default) ? call_user_func($default) : $default;
  42. }
  43. return $this->items[$key] = unserialize(substr($cache, 10));
  44. }
  45. /**
  46. * Write an item to the cache.
  47. *
  48. * @param string $key
  49. * @param mixed $value
  50. * @param int $minutes
  51. * @return void
  52. */
  53. public function put($key, $value, $minutes)
  54. {
  55. file_put_contents(APP_PATH.'storage/cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
  56. }
  57. /**
  58. * Delete an item from the cache.
  59. *
  60. * @param string $key
  61. * @return void
  62. */
  63. public function forget($key)
  64. {
  65. @unlink(APP_PATH.'storage/cache/'.$key);
  66. }
  67. }