Skip to content

Instantly share code, notes, and snippets.

@IlyaPavlik
Created October 20, 2014 02:51
Show Gist options
  • Save IlyaPavlik/5e11919449fcebe4d7c7 to your computer and use it in GitHub Desktop.
Save IlyaPavlik/5e11919449fcebe4d7c7 to your computer and use it in GitHub Desktop.
Получение доменного имени по ip
<?php
class DomainInfo
{
public static function getDomainNameByIP($ip){
return gethostbyaddr($ip);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment