file.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 ( ! file_exists(APP_PATH.'storage/cache/'.$key))
  29. {
  30. return null;
  31. }
  32. $cache = file_get_contents(APP_PATH.'storage/cache/'.$key);
  33. if (time() >= substr($cache, 0, 10))
  34. {
  35. $this->forget($key);
  36. return null;
  37. }
  38. return $this->items[$key] = unserialize(substr($cache, 10));
  39. }
  40. /**
  41. * Write an item to the cache.
  42. *
  43. * @param string $key
  44. * @param mixed $value
  45. * @param int $minutes
  46. * @return void
  47. */
  48. public function put($key, $value, $minutes)
  49. {
  50. file_put_contents(APP_PATH.'storage/cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
  51. }
  52. /**
  53. * Delete an item from the cache.
  54. *
  55. * @param string $key
  56. * @return void
  57. */
  58. public function forget($key)
  59. {
  60. @unlink(APP_PATH.'storage/cache/'.$key);
  61. }
  62. }