View Single Post
Old 2006-10-18, 09:06 AM   #15
Halfdeck
You can now put whatever you want in this space :)
 
Halfdeck's Avatar
 
Join Date: Oct 2004
Location: New Haven, CT
Posts: 985
Send a message via ICQ to Halfdeck
Code:
function base_domain($url) { // parse out subdomains
		
	$url = parse_url($url);
	$host = $url['host'];
		
	$pattern = "/([\-a-z0-9]*\.)?([\-a-z0-9]*)\.([a-z0-9]*)/i";
	preg_match($pattern, $host, $matches);
	$host = $matches[2] ."." .$matches[3];

	return $host;
}
Gotta be modified for stuff like .co.uk I guess.
__________________
Success is going from failure to failure without a loss of enthusiasm.

Last edited by Halfdeck; 2006-10-18 at 09:08 AM..
Halfdeck is offline   Reply With Quote