get domain url in php code example
Example 1: php get current domain
// Warning: This can be manipulated by hackers!
// If this is problematic, store the domain in a config file
$currentDomain = $_SERVER['SERVER_NAME'];
Example 2: php get domain name from url
parse_url('http://www.website.com/hey.php', PHP_URL_HOST);
Example 3: how to get the link of the current page in php
<?php
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
$url = "https://";
else
$url = "http://";
// Append the host(domain name, ip) to the URL.
$url.= $_SERVER['HTTP_HOST'];
// Append the requested resource location to the URL
$url.= $_SERVER['REQUEST_URI'];
echo $url;
?>
Example 4: php get domain name with https
echo $_SERVER['SERVER_NAME']; //Outputs www.example.com