session.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Session Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | The name of the session driver for your application.
  9. |
  10. | Since HTTP is stateless, sessions are used to maintain "state" across
  11. | multiple requests from the same user of your application.
  12. |
  13. | Supported Drivers: 'cookie', 'file', 'database', 'memcached', 'apc'.
  14. |
  15. */
  16. 'driver' => 'file',
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Session Database
  20. |--------------------------------------------------------------------------
  21. |
  22. | The database table on which the session should be stored.
  23. |
  24. | This option is only relevant when using the "database" session driver.
  25. |
  26. */
  27. 'table' => 'sessions',
  28. /*
  29. |--------------------------------------------------------------------------
  30. | Session Lifetime
  31. |--------------------------------------------------------------------------
  32. |
  33. | The number of minutes a session can be idle before expiring.
  34. |
  35. */
  36. 'lifetime' => 60,
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Session Expiration On Close
  40. |--------------------------------------------------------------------------
  41. |
  42. | Determines if the session should expire when the user's web browser closes.
  43. |
  44. */
  45. 'expire_on_close' => false,
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Session Cookie Path
  49. |--------------------------------------------------------------------------
  50. |
  51. | The path for which the session cookie is available.
  52. |
  53. */
  54. 'path' => '/',
  55. /*
  56. |--------------------------------------------------------------------------
  57. | Session Cookie Domain
  58. |--------------------------------------------------------------------------
  59. |
  60. | The domain for which the session cookie is available.
  61. |
  62. */
  63. 'domain' => null,
  64. );