php url_to_domain

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php url_to_domain相关的知识,希望对你有一定的参考价值。

<?php

if (!function_exists('url_to_domain')) {
    /**
     * Take a URL and parse it to return the domain name
     *
     * @param (string) $url
     * @return mixed string or false if url cannot be parsed
     *
     */
    function url_to_domain($url)
    {
        $domain = @parse_url($url, PHP_URL_HOST);
        if (!$domain) {
            return false;
        }

        // Check for subdomain and eliminate
        if (substr_count(strtoupper($domain), '.') > 1) {
            $subdomain = explode('.', $domain)[0];
            $domain = str_replace("$subdomain.", '', $domain);
        }

        return $domain;
    }
}

以上是关于php url_to_domain的主要内容,如果未能解决你的问题,请参考以下文章

php [guzzle php] guzzle php #php

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?

php [php:PHPMailer示例] php库“PHPMailer”示例。 #PHP