1、系统变量方法
缺点不使用传递过来的地址和不支持系统变量的主机
echo $_SERVER['HTTP_HOST'];
2、自带函数方法
$url = 'https://www.144g.net/index.php?referer=144g.net';
$arr_url = parse_url($url);
echo $arr_url['host'];
3、自定义函数
function getdomain($url)
{
$url = str_replace('http://',”,$url); //如果有http前缀,则去掉
$pos = strpos($url,'/');
if($pos === false)
{
return $url;
}else
{
return substr($url, 0, $pos);
}
}
echo getdomain($url);
4、正则获取
preg_match("/^(http://)?([^/]+)/i", $url, $arr_domain);
echo $arr_domain[2];