在php中读取URL

这个问题在这里已经有了答案:

  • 以PHP 28的答案获取完整的URL

  • 你想要的东西是你的网址的子域名。 用这个

    $subdomain =  array_shift(explode(".",$_SERVER['HTTP_HOST']));
    

    $domain = $_SERVER['HTTP_HOST'];
    $path = $_SERVER['SCRIPT_NAME'];
    $queryString = $_SERVER['QUERY_STRING'];
    $url = "http://" . $domain . $path . "?" . $queryString;
    echo "The current URL is: " . $url . "";
    
    visit :http://www.2basetechnologies.com/
    
    链接地址: http://www.djcxy.com/p/42285.html

    上一篇: Reading URL in php

    下一篇: Get full website URL?