Jump to content

[SOLVED] You guys are gonna find this one easy!


ghostwalkz

Recommended Posts

Okay I am stuck.

 

I have a string that can change it's a domain name:

 

$string = "http://www.w3.org";

 

or it could be

 

 

$string = "http://lists.w3.org";

 

or even

 

$string = "http://docs.google.com";

 

so what I need to do in PHP is extract the domain (w3.org or google.com or whatever) from the string.

 

Maybe something to do with grabbing the two words either side of the last dot or something, but I am stuck.

 

Any help appreciated. - Code example even better!! ;-)

 

 

I am not sure if parse_url will seperate the sub domain from domain name..

 

u may try the following code.

 

$string = "http://www.w3.org";
$arrTemp = explode(".", $string);
$strDomainName = $arrTemp[count($arrTemp)-2].".".$arrTemp[count($arrTemp)-1];
echo $strDomainName;

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.