Jump to content

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;

 

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.