Skip to content

Instantly share code, notes, and snippets.

@cb99999
Created May 2, 2013 19:39
Show Gist options
  • Save cb99999/5504803 to your computer and use it in GitHub Desktop.
Save cb99999/5504803 to your computer and use it in GitHub Desktop.
php > function: get current url
/*************************
/* function: get current url
/*************************/
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;
}
$pageURL = curPageURL();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment