Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to set the PHP session lifetime as long as possible util the browser is closed. Is it possible to implement this just by settings something in PHP script? Or do I have to change anything in PHP.ini configuration file?

share|improve this question

3 Answers

PHP's default session setting is to make the session cookies... session cookies. They'll last for the lifetime of the browser and get deleted when it's closed/quit/exited. The relevant .ini setting is session.cookie_lifetime

share|improve this answer

I just went through this myself recently.

Here is the website I used:

http://www.captain.at/howto-php-sessions.php

Pay attention to the "session.php" section at the bottom.

share|improve this answer
Thanks, MrCarney! – James Tang Sep 14 '10 at 2:43
@MrCarney: The correct answer is given below (by Marc B). Unless something was changed in PHP configuration, you don't have to do anything to achieve, what is asked about. By default all cookies are kept only until browser exits. You have to take extra work (i.e. set their lifetime), if you want them to be kept longer. – trejder Jun 26 '12 at 8:03
@James Tang: In StackExchange network, you say "thank you", by accepting answer -- i.e. selecting answer as correct one (in your opinion). Click "yes" checkbox below question popularity (upvote and downvote arrows). You have acceptance rate 0%, which means you haven't accepted any answer to any of your questions! – trejder Jun 26 '12 at 8:05

before any output;

<?
session_set_cookie_params(0);

session_start();

/* Set to 0 if you want the session
   cookie to be set until the user closes
   the browser. Use time() + seconds
   otherwise. */
?>
share|improve this answer
The correct answer is given above (by Marc B). Unless something was changed in PHP configuration, you don't have to do anything to achieve, what is asked about. By default all cookies are kept only until browser exits. You have to take extra work (i.e. set their lifetime), if you want them to be kept longer. – trejder Jun 26 '12 at 8:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.