Вход Регистрация
Файл: modules/lib/ip_details.php
Строк: 40
<?php
//Getting Country, City, Region, Map Location and Internet Service Provider
$url 'http://extreme-ip-lookup.com/json/' $ip;
$ch  curl_init();
curl_setopt($chCURLOPT_URL$url);
curl_setopt($chCURLOPT_RETURNTRANSFER1);
curl_setopt($chCURLOPT_FOLLOWLOCATIONtrue);
curl_setopt($chCURLOPT_IPRESOLVECURL_IPRESOLVE_V4);
curl_setopt($chCURLOPT_ENCODING'gzip,deflate');
curl_setopt($chCURLOPT_USERAGENT$useragent);
curl_setopt($chCURLOPT_REFERER"https://google.com");
$ipcontent curl_exec($ch);
curl_close($ch);

$ip_data = @json_decode($ipcontent);
if (
$ip_data && $ip_data->{'status'} == 'success') {
    
$country      $ip_data->{'country'};
    
$country_code $ip_data->{'countryCode'};
    
$region       $ip_data->{'region'};
    
$city         $ip_data->{'city'};
    
$latitude     $ip_data->{'lat'};
    
$longitude    $ip_data->{'lon'};
    
$isp          $ip_data->{'isp'};
} else {
    
$country      "Unknown";
    
$country_code "XX";
    
$region       "Unknown";
    
$city         "Unknown";
    
$latitude     "0";
    
$longitude    "0";
    
$isp          "Unknown";
}
?>
Онлайн: 0
Реклама