Skip to content

Instantly share code, notes, and snippets.

@dipesh008
Created May 29, 2013 10:38
Show Gist options
  • Save dipesh008/5669413 to your computer and use it in GitHub Desktop.
Save dipesh008/5669413 to your computer and use it in GitHub Desktop.
HTTP OR HTTPS
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'
|| $_SERVER['SERVER_PORT'] == 443) {
// HTTPS
} else {
// HTTP
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment