Skip to content

Instantly share code, notes, and snippets.

@MFFunmaker
Created March 18, 2016 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MFFunmaker/248fed0a0b52636c4f23 to your computer and use it in GitHub Desktop.
Save MFFunmaker/248fed0a0b52636c4f23 to your computer and use it in GitHub Desktop.
// version check and then corresponding session check
if ( ( version_compare( PHP_VERSION, '5.4.0', '>=' ) ) && ( session_status() == PHP_SESSION_NONE ) ) {
session_start();
}
elseif ( session_id() == '' ) {
session_start();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment