Вход Регистрация
Файл: 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($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_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";
}
?>
Онлайн: 3
Реклама