Answers for "how to get domain from url php"

PHP
3

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'];
Posted by: Guest on January-22-2020
-1

php get domain name with https

echo $_SERVER['SERVER_NAME']; //Outputs www.example.com
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language