vote up 2 vote down star

Is this bad practice?

if($_SESSION['something'] == '') {

    echo 'the session is empty';

}

Is there a way to check if a its empty or b it is not set? e.g something better than...

if(     $_SESSION['something'] == ''  ||    !isset($_SESSION['something'])   )  {

    echo 'the session is either empty or doesn't exist

}

OR does !isset just see if a $_SESSION exist and doesn't matter if there are values in the array?

Thanks for helping a newbie

flag

5 Answers

vote up 6 vote down check

I would use isset and empty:

session_start();
if(isset($_SESSION['blah']) && !empty($_SESSION['blah'])) {
   echo 'Set and not empty, and no undefined index error!');
}

array_key_exists is a nice alternative to using isset to check for keys:

session_start();
if(array_key_exists('blah',$_SESSION) && !empty($_SESSION['blah'])) {
    echo 'Set and not empty, and no undefined index error!');
}

Make sure you're calling session_start before reading from or writing to the session array.

link|flag
no need to use isset if you are already using empty. empty will also check if the variable exists, i.e. is not null/undefined – knittl Oct 5 at 12:47
2  
@knittl It's good practice to actually make sure you have the variable before testing to see if it's empty. – Crises of Identity Oct 5 at 12:49
2  
@knittl - but then we don't know if it's been set or not, whether it's not set or empty true will be returned. I tend to use the above, but it might not always be needed. – karim79 Oct 5 at 12:50
3  
Empty return false when not exist or null or "" or empty array. Why would you need to check if isset too? Read the help file : ca.php.net/empty – Daok Oct 5 at 12:52
2  
@Daok Variables can both exist and be blank. Checking to see if it exists AND is empty is a good idea. – Crises of Identity Oct 5 at 12:52
show 2 more comments
vote up 3 vote down

you are looking for PHP’s empty() function

link|flag
5  
empty is dangerous because it also reports false, 0 and "0" as empty. – OIS Oct 5 at 12:51
vote up 1 vote down

You could use the count() function to see how many entries there are in the $_SESSION array. This is not good practice. You should instead set the id of the user (or something similar) to check wheter the session was initialised or not.

if( !isset($_SESSION['uid']) )
    die( "Login required." );

(Assuming you want to check if someone is logged in)

link|flag
vote up 3 vote down

Use isset, empty or array_key_exists (especially for array keys) before accessing a variable whose existence you are not sure of. So change the order in your second example:

if (!isset($_SESSION['something']) || $_SESSION['something'] == '')
link|flag
vote up 2 vote down

If you want to check whether sessions are available, you probably want to use the session_id() function:

session_id() returns the session id for the current session or the empty string ("") if there is no current session (no current session id exists).
link|flag

Your Answer

Get an OpenID
or

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