Skip to content

Instantly share code, notes, and snippets.

@stellis
Created January 19, 2015 19:12
Show Gist options
  • Save stellis/fd2a0dab9ce89b19e21c to your computer and use it in GitHub Desktop.
Save stellis/fd2a0dab9ce89b19e21c to your computer and use it in GitHub Desktop.
function session_exists()
{
if(php_sapi_name() === 'cli')
{
$exists = FALSE;
}
else if(version_compare(phpversion(), '5.4.0', '>='))
{
$exists = (session_status() === PHP_SESSION_ACTIVE);
}
else
{
$id = session_id();
$exists = empty($id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment