-1

I know PHP session default value is 24 minutes. This is I ensured from the phpinfo(); But My session is not expired till I close the browser. I am using XAMPP on Windows 7 machine.

Below is my php session values

enter image description here

My question is not to increase or decrease the session time. Why it is not expired after 24 minutes.

ManiMuthuPandi
  • 1,594
  • 2
  • 26
  • 46
  • This link might help. [http://stackoverflow.com/questions/8311320/how-to-change-the-session-timeout-in-php](http://stackoverflow.com/questions/8311320/how-to-change-the-session-timeout-in-php) – A J Sep 24 '15 at 09:36
  • You can also take a look here: http://stackoverflow.com/a/6360403/5297359 – swidmann Sep 24 '15 at 09:37
  • I know how to extend the life time of session. But here my question is why my session not expired after 24 minutes(php default values) – ManiMuthuPandi Sep 24 '15 at 09:44

1 Answers1

0

I found the reason for not losing session for my application. When I continuously working on the application the session will be initiated again and again.

Only when the user left the application more than 24 minutes means only session is expiring.

ManiMuthuPandi
  • 1,594
  • 2
  • 26
  • 46