vote up 5 vote down star

I need to build a function which parses the domain from a url.

So:

http://google.com/dhasjkdas/sadsdds/sdda/sdads.html or http://www.google.com/dhasjkdas/sadsdds/sdda/sdads.html

Would become "google.com" and

http://google.co.uk/dhasjkdas/sadsdds/sdda/sdads.html

would become "google.co.uk"

flag

2 Answers

vote up 8 vote down check

check out parse_url():

$url = 'http://google.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
print $parse['host']; // prints 'google.com'

note: parse_url doesn't handle really badly mangled urls very well, but is fine if you generally expect decent urls.

link|flag
One thing parse_url() does not do is only return the domain. If you add www.google.com or www.google.co.uk, it will return the host as well. Any suggestions for that? – Crad Dec 30 at 0:40
vote up 2 vote down

Check out parse_url()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.