Created
January 19, 2015 19:12
-
-
Save stellis/fd2a0dab9ce89b19e21c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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