Answers for "extract the domain name from the current url in php"

PHP
5

php get domain from url

$url = 'http://google.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
echo $parse['host']; // prints 'google.com'
Posted by: Guest on April-29-2020

Code answers related to "extract the domain name from the current url in php"

Browse Popular Code Answers by Language