Home> php教程> php手册> body text

PHP获取当前页面的网址,php获取当前页

WBOY
Release: 2016-06-13 09:16:53
Original
1636 people have browsed it

PHP获取当前页面的网址,php获取当前页

PHP获取当前页面的网址

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; }
Copy after login

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!