file.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php namespace System\Session\Driver;
  2. class File implements \System\Session\Driver {
  3. /**
  4. * Load a session by ID.
  5. *
  6. * @param string $id
  7. * @return array
  8. */
  9. public function load($id)
  10. {
  11. // -----------------------------------------------------
  12. // Look for the session on the file system.
  13. // -----------------------------------------------------
  14. if (file_exists($path = APP_PATH.'sessions/'.$id))
  15. {
  16. return unserialize(file_get_contents($path));
  17. }
  18. }
  19. /**
  20. * Save a session.
  21. *
  22. * @param array $session
  23. * @return void
  24. */
  25. public function save($session)
  26. {
  27. file_put_contents(APP_PATH.'sessions/'.$session['id'], serialize($session), LOCK_EX);
  28. }
  29. /**
  30. * Delete a session by ID.
  31. *
  32. * @param string $id
  33. * @return void
  34. */
  35. public function delete($id)
  36. {
  37. @unlink(APP_PATH.'sessions/'.$id);
  38. }
  39. /**
  40. * Delete all expired sessions.
  41. *
  42. * @param int $expiration
  43. * @return void
  44. */
  45. public function sweep($expiration)
  46. {
  47. foreach (glob(APP_PATH.'sessions/*') as $file)
  48. {
  49. // -----------------------------------------------------
  50. // If the session file has expired, delete it.
  51. // -----------------------------------------------------
  52. if (filetype($file) == 'file' and filemtime($file) < $expiration)
  53. {
  54. @unlink($file);
  55. }
  56. }
  57. }
  58. }