Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gdemarcsek
Created March 3, 2017 10:29
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 gdemarcsek/fb7f7a9083de1e855a2482997fa67860 to your computer and use it in GitHub Desktop.
Save gdemarcsek/fb7f7a9083de1e855a2482997fa67860 to your computer and use it in GitHub Desktop.
p
<?php
header("Content-type: text/plain");
foreach ($_SERVER as $key => $value) {
if (substr($key, 0, 3) == "SSL") {
print "$key: $value\n"
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment