Skip to content

Instantly share code, notes, and snippets.

@gr8pathik
Last active December 30, 2015 00:19
Show Gist options
  • Save gr8pathik/7748985 to your computer and use it in GitHub Desktop.
Save gr8pathik/7748985 to your computer and use it in GitHub Desktop.
Check if server is HTTPS
<?php
if ($_SERVER['HTTPS'] != "on") {
echo "This is not HTTPS";
}else{
echo "This is HTTPS";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment