php get domain name with https

43

$url = 'http://google.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
echo $parse['host']; // prints 'google.com'
echo $_SERVER['SERVER_NAME']; //Outputs www.example.com

Comments

Submit
0 Comments