file.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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)
  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. return $this->forget($key);
  40. }
  41. return $this->items[$key] = unserialize(substr($cache, 10));
  42. }
  43. /**
  44. * Write an item to the cache.
  45. *
  46. * @param string $key
  47. * @param mixed $value
  48. * @param int $minutes
  49. * @return void
  50. */
  51. public function put($key, $value, $minutes)
  52. {
  53. file_put_contents(APP_PATH.'storage/cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
  54. }
  55. /**
  56. * Delete an item from the cache.
  57. *
  58. * @param string $key
  59. * @return void
  60. */
  61. public function forget($key)
  62. {
  63. @unlink(APP_PATH.'storage/cache/'.$key);
  64. }
  65. }