Skip to content

Instantly share code, notes, and snippets.

@Panchev
Created September 30, 2016 07:02
Show Gist options
  • Save Panchev/65df7b032138fa4667becf92f1fa305b to your computer and use it in GitHub Desktop.
Save Panchev/65df7b032138fa4667becf92f1fa305b to your computer and use it in GitHub Desktop.
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {
$pageURL .= "s";
}
$pageURL .= "://";
if ( $_SERVER["SERVER_PORT"] != "80" ) {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment