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 am trying to validate whether a session exists or not. For that, I tried the following :

make a new session if :

  1. if(session_id() == '')

  2. if(isset($_SESSION))

  3. if(session_status() == PHP_SESSION_ACTIVE)

None of the above are working. Any clues where I may be going wrong?

The reason why I am doing this is because I need to do seperate things based on whether a session exists or not - like

if (session exists)

 ....

else

 ...
share|improve this question
Just to check - you do have session_start(); at the start of your page, right? – Anonymous Jan 21 at 11:13
Let's tackle the problem from a different angle -- why do you need to check the session actually exists? – Alex Jan 21 at 11:17

3 Answers

  1. You need session_start for that and that would result in sending session cookie
  2. This variable always exists
  3. Same as 1

You could just check whether there is anything inside the user's session.
isset($_SESSION['some flag]) since using session requires a session_start call which will result in sending a session cookie and eventually creating a session, which will always be true.

share|improve this answer

Two alternatives to try are:

  1. if (!session_id())
  2. if (empty(session_id())

If either of those return true, make sure to start the session first and then check for any value you know should exist. For example:

// Start the session when no id is set
if (!session_id()) {
    session_start();
}

// Double-check for a known session variable
if (array_key_exists('username', $_SESSION) && !empty($_SESSION['username'])) {
    // Session is good, continue here.
}
share|improve this answer

try this one:

public function session_exists(){
    if(ini_get('session.use_cookies') == '1' && isset($_COOKIE[session_name()])){
        return true;
    } 
    else if(!empty($_REQUEST[session_name()])){
        return true;
    }
    return false;
}
share|improve this answer
This doesn't guarantee the session is valid (neither outdated, nor actually matches a valid session identifier) – Alex Jan 21 at 11:13
The function is from Zend Framework.. – redreggae Jan 21 at 11:18

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.