vote up 0 vote down star
1

I'm looking for a bullet proof way to extract domain (with tld) from any givem link - an eqivalent of dirname($path) let's call it domainname($link).

echo domainname("http://example.com/index.html?a=123%1231");

should print "example.com"

flag

2 Answers

vote up 3 vote down check

parse_url return value has a host key.

link|flag
vote up 2 vote down
echo parse_url($url, PHP_URL_HOST);

More info: http://be.php.net/manual/en/function.parse-url.php

link|flag
1  
component parameter was added in php 5.1.2 – SilentGhost Mar 10 at 13:34

Your Answer

Get an OpenID
or

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