vote up 2 vote down star

Im looking for a method (or function) to strip out the domain.ext part of any URL thats fed into the function. The domain extension can be anything (.com, .co.uk, .nl, .whatever), and the URL thats fed into it can be anything from http://www.domain.com to www.domain.com/path/script.php?=whatever

Whats the best way to go about doing this?

flag

3 Answers

vote up 11 vote down check

parse_url turns a URL into an associative array:

php > $foo = "http://www.example.com/foo/bar?hat=bowler&accessory=cane";
php > $blah = parse_url($foo);
php > print_r($blah);
Array
(
    [scheme] => http
    [host] => www.example.com
    [path] => /foo/bar
    [query] => hat=bowler&accessory=cane
)
link|flag
What would be the best way to strip out the www. portion if its present in the domain. IM not good with regex. The messy way I can think of is $www_check = substr($domain,0,4); if ($www_check == "www.") { echo substr($domain, 4); } else { echo $domain; } – Yegor Oct 6 '08 at 22:08
@Yegor: $domain = preg_replace('/^www./','',$domain); – Kent Fredric Oct 6 '08 at 23:37
er. make that \. not . – Kent Fredric Oct 6 '08 at 23:37
I like explode on "www." and then use the first instance in the array myself. It generally works just fine. – Robert Elwell Oct 7 '08 at 2:12
Careful Robert as a lot of URls don't have www in front of them. ie images.google.com – Erik Schulz Oct 7 '08 at 2:22
show 2 more comments
vote up 5 vote down

You can use parse_url() to do this:

$url = 'http://www.example.com';
$domain = parse_url($url, PHP_URL_HOST);

In this example $domain should contain example.com.

link|flag
Shouldn't that be parse_url() instead of url_parse() – Darryl Hein Oct 6 '08 at 21:39
Note: the second argument for parse_url is a PHP5 invention. Anyone on PHP4 (upgrade, please, for the love of God...) will need to use Robert Elwell's way. – ceejayoz Oct 6 '08 at 22:36
Anyone on PHP4 ... will have to upgrade. – Kent Fredric Oct 6 '08 at 23:38
vote up 2 vote down

You can also write a regular expression to get exactly what you want.

Here is my attempt at it:

$pattern = '/\w+\..{2,3}(?:\..{2,3})?(?:$|(?=\/))/i';
$url = 'http://www.example.com/foo/bar?hat=bowler&accessory=cane';
if (preg_match($pattern, $url, $matches) === 1) {
    echo $matches[0];
}

The output is:

example.com

This pattern also takes into consideration domains such as 'example.com.au'.

Note: I have not consulted the relevant RFC.

link|flag

Your Answer

Get an OpenID
or

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