file.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. // --------------------------------------------------
  29. // If the item has already been loaded, return it.
  30. // --------------------------------------------------
  31. if (array_key_exists($key, $this->items))
  32. {
  33. return $this->items[$key];
  34. }
  35. // --------------------------------------------------
  36. // Verify that the cache file exists.
  37. // --------------------------------------------------
  38. if ( ! file_exists(APP_PATH.'cache/'.$key))
  39. {
  40. return $default;
  41. }
  42. // --------------------------------------------------
  43. // Read the contents of the cache file.
  44. // --------------------------------------------------
  45. $cache = file_get_contents(APP_PATH.'cache/'.$key);
  46. // --------------------------------------------------
  47. // Has the cache expired? The UNIX expiration time
  48. // is stored at the beginning of the file.
  49. // --------------------------------------------------
  50. if (time() >= substr($cache, 0, 10))
  51. {
  52. $this->forget($key);
  53. return $default;
  54. }
  55. return $this->items[$key] = unserialize(substr($cache, 10));
  56. }
  57. /**
  58. * Write an item to the cache.
  59. *
  60. * @param string $key
  61. * @param mixed $value
  62. * @param int $minutes
  63. * @return void
  64. */
  65. public function put($key, $value, $minutes)
  66. {
  67. // --------------------------------------------------
  68. // The expiration time is stored as a UNIX timestamp
  69. // at the beginning of the cache file.
  70. // --------------------------------------------------
  71. file_put_contents(APP_PATH.'cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
  72. }
  73. /**
  74. * Delete an item from the cache.
  75. *
  76. * @param string $key
  77. * @return void
  78. */
  79. public function forget($key)
  80. {
  81. @unlink(APP_PATH.'cache/'.$key);
  82. }
  83. }