Example #3 Getting the domain name out of a URL
<?php
// get host name from URL
preg_match('@^(?:http://)?([^/]+)@i',
"http://www.php.net/index.html",
$matches);
$host =
$matches[1];
// get last two segments of host name
preg_match('/[^.]+\.[^.]+$/',
$host,
$matches);
echo "domain name is: {$matches[0]}\n";
?>
The above example will output:
domain name is: php.net