获取二级域名

$url="http://".$_SERVER ['HTTP_HOST'].$_SERVER['PHP_SELF'];
preg_match("#http://(.*?)\.#i",$url,$match);
 
echo $match[1];

你可能感兴趣的:(获取二级域名)