Your Ad Here

Home » PHP Code »

0

Hello friends,

Domainr API is used to get the information of existing domain names. it is working for all domains ( most probably might not be work for subdomains). using php code we can get the domain is existing or not with reference to domianr API.

 

See the following code to retrieve information

PHP script

 

1
2
3
4
5
6
7
8
function getInfo($domain) {
$domain = urlencode($domain); // encode url here...

$request  = "http://domai.nr/api/json/search?";
$request .= "q=".$domain."&";

return $response  = file_get_contents($request);
}

Pass the domain name to that function like : ( without http )

1
$data=getInfo('www.anil2u.info');

Get the results in the json format and convert into string:

1
2
$obj = json_decode($data);
echo "This domain is ".$obj->{'results'}[0]->{'availability'} ;

You may like these posts

    How to create custom error log files in php?Unzip file using php codeSEO - URL using php code and .htaccessHow to manage random header image in joomla

 

Leave a Reply