获取当前页URL函数

获取当前页URL函数

function GetCurUrl()
{
  $url = 'http://';

  if(isset($_SERVER['HTTPS']) AND $_SERVER['HTTPS'] == 'on')
  {
    $url = 'https://';
  }

  if($_SERVER['SERVER_PORT'] != '80')
  {
    $url .= $_SERVER['HTTP_HOST'].':'.$_SERVER['SERVER_PORT'].$_SERVER['REQUEST_URI'];
  }
  else
  {
    $url .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
  }
  return $url;
}

  

posted @ 2015-01-21 19:39  feimengv  阅读(206)  评论(0编辑  收藏  举报