Guest User

Untitled

a guest
Oct 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function getScheme() {
  2. $scheme = 'http';
  3. if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
  4. $scheme .= 's';
  5. }
  6. return $scheme;
  7. }
Add Comment
Please, Sign In to add comment