Jump to content

Sessions, self defeating?


monkeytooth

Recommended Posts

I don't know if this is a self defeating concept or not. One of the people I am coding with added this line to the top of the index file

if(!isset($_SESSION)) {session_start();}

 

for some reason that doesn't make sense to me, would that be a self defeating way of starting a session? don't you need to have it just as session_start(); no matter what and not wrapped in a if-else?

Link to comment
Share on other sites

For example if your application has different sources that all may use sessions then at some point a source may rely on sessions and thus writing something like:

 

$_SESSION['datakey'] = 'datavalue';

 

Now the line

 

if (!isset($_SESSION)) { session_start(); }

 

Evaluates false and session's does not get started the array _SESSION gets filled with data but is not persisted between requests.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.