Skip to content

Instantly share code, notes, and snippets.

@redolivedev
Last active March 1, 2017 16:42
Show Gist options
  • Save redolivedev/4df35f374ca6d0be85a06ecf7133cb49 to your computer and use it in GitHub Desktop.
Save redolivedev/4df35f374ca6d0be85a06ecf7133cb49 to your computer and use it in GitHub Desktop.
function maybe_start_session(){
if( php_sapi_name() == 'cli' ) return;
if( version_compare( phpversion(), '5.4.0', '>=' ) ) {
if( session_status() != PHP_SESSION_ACTIVE ) session_start();
} else {
if( session_id() === '' ) session_start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment