如何从PHP中的URL获取网站名称?

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

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

  • <?php
    echo $_SERVER['HTTP_HOST'];
    ?>
    

    使用此代码


    $protocol = stripos($_SERVER['SERVER_PROTOCOL'],'https') === true ? 'https://' : 'http://';
    $url = $protocol.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
    

    $address = 'http://yoursite.com/';
    echo parse_url($address)['host'];
    
    链接地址: http://www.djcxy.com/p/42281.html

    上一篇: How to get the site name from URL in PHP?

    下一篇: GET current page full URL in php