Skip to content

Instantly share code, notes, and snippets.

@pbroschwitz
Created June 18, 2012 23:18
Show Gist options
  • Save pbroschwitz/2951390 to your computer and use it in GitHub Desktop.
Save pbroschwitz/2951390 to your computer and use it in GitHub Desktop.
Get current page url
// @see http://css-tricks.com/snippets/php/get-current-page-url/?utm_source=dlvr.it&utm_medium=twitter
function getUrl() {
$url = @( $_SERVER["HTTPS"] != 'on' ) ? 'http://'.$_SERVER["SERVER_NAME"] : 'https://'.$_SERVER["SERVER_NAME"];
$url .= ( $_SERVER["SERVER_PORT"] !== 80 ) ? ":".$_SERVER["SERVER_PORT"] : "";
$url .= $_SERVER["REQUEST_URI"];
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment