รับประเทศผู้เข้าชมจาก IP ของพวกเขา


220

ฉันต้องการให้ประเทศของผู้เข้าชมผ่าน IP ของพวกเขา ... ตอนนี้ฉันกำลังใช้ ( http://api.hostip.info/country.php?ip= ...... )

นี่คือรหัสของฉัน:

<?php

if (isset($_SERVER['HTTP_CLIENT_IP']))
{
    $real_ip_adress = $_SERVER['HTTP_CLIENT_IP'];
}

if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
{
    $real_ip_adress = $_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
    $real_ip_adress = $_SERVER['REMOTE_ADDR'];
}

$cip = $real_ip_adress;
$iptolocation = 'http://api.hostip.info/country.php?ip=' . $cip;
$creatorlocation = file_get_contents($iptolocation);

?>

มันใช้งานได้ดี แต่สิ่งนี้คือส่งคืนรหัสประเทศเช่นสหรัฐอเมริกาหรือ CA ไม่ใช่ชื่อประเทศทั้งหมดเช่นสหรัฐอเมริกาหรือแคนาดา

ดังนั้นมีทางเลือกที่ดีในการ hostip.info เสนอนี้

ฉันรู้ว่าฉันสามารถเขียนรหัสบางอย่างที่จะเปลี่ยนตัวอักษรสองตัวนี้ให้เป็นชื่อประเทศทั้งหมด แต่ฉันแค่ขี้เกียจเกินกว่าจะเขียนรหัสที่มีทุกประเทศ ...

PS: ด้วยเหตุผลบางอย่างฉันไม่ต้องการใช้ไฟล์ CSV ที่เตรียมไว้หรือรหัสใด ๆ ที่จะดึงข้อมูลนี้มาให้ฉันบางอย่างเช่น ip2country พร้อมทำโค้ดและ CSV


20
อย่าขี้เกียจไม่มีหลายประเทศและมันไม่ยากเกินไปที่จะรับตารางการแปลสำหรับรหัสตัวอักษร FIPS 2 ไปยังชื่อประเทศ
Chris Henry

ใช้คุณสมบัติทางภูมิศาสตร์ Maxmind มันจะรวมชื่อประเทศในผลลัพธ์ maxmind.com/app/php
Tchoupi

การมอบหมายครั้งแรกของคุณถึง$real_ip_addressจะถูกละเว้นเสมอ Anyways, จำไว้ว่าX-Forwarded-Forส่วนหัว HTTP สามารถปลอมแปลงมากได้อย่างง่ายดายและว่ามีผู้รับมอบฉันทะเช่น www.hidemyass.com
วอลเตอร์ Tross

5
IPLocate.io ให้ API ฟรี: https://www.iplocate.io/api/lookup/8.8.8.8- ข้อจำกัดความรับผิดชอบ: ฉันใช้บริการนี้
ttarik

ฉันขอแนะนำให้ลองIpregistry : api.ipregistry.co/ (ข้อจำกัดความรับผิดชอบ: ฉันเปิดใช้บริการ)
Laurent

คำตอบ:


495

ลองใช้ฟังก์ชั่น PHP อย่างง่ายนี้

<?php

function ip_info($ip = NULL, $purpose = "location", $deep_detect = TRUE) {
    $output = NULL;
    if (filter_var($ip, FILTER_VALIDATE_IP) === FALSE) {
        $ip = $_SERVER["REMOTE_ADDR"];
        if ($deep_detect) {
            if (filter_var(@$_SERVER['HTTP_X_FORWARDED_FOR'], FILTER_VALIDATE_IP))
                $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
            if (filter_var(@$_SERVER['HTTP_CLIENT_IP'], FILTER_VALIDATE_IP))
                $ip = $_SERVER['HTTP_CLIENT_IP'];
        }
    }
    $purpose    = str_replace(array("name", "\n", "\t", " ", "-", "_"), NULL, strtolower(trim($purpose)));
    $support    = array("country", "countrycode", "state", "region", "city", "location", "address");
    $continents = array(
        "AF" => "Africa",
        "AN" => "Antarctica",
        "AS" => "Asia",
        "EU" => "Europe",
        "OC" => "Australia (Oceania)",
        "NA" => "North America",
        "SA" => "South America"
    );
    if (filter_var($ip, FILTER_VALIDATE_IP) && in_array($purpose, $support)) {
        $ipdat = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=" . $ip));
        if (@strlen(trim($ipdat->geoplugin_countryCode)) == 2) {
            switch ($purpose) {
                case "location":
                    $output = array(
                        "city"           => @$ipdat->geoplugin_city,
                        "state"          => @$ipdat->geoplugin_regionName,
                        "country"        => @$ipdat->geoplugin_countryName,
                        "country_code"   => @$ipdat->geoplugin_countryCode,
                        "continent"      => @$continents[strtoupper($ipdat->geoplugin_continentCode)],
                        "continent_code" => @$ipdat->geoplugin_continentCode
                    );
                    break;
                case "address":
                    $address = array($ipdat->geoplugin_countryName);
                    if (@strlen($ipdat->geoplugin_regionName) >= 1)
                        $address[] = $ipdat->geoplugin_regionName;
                    if (@strlen($ipdat->geoplugin_city) >= 1)
                        $address[] = $ipdat->geoplugin_city;
                    $output = implode(", ", array_reverse($address));
                    break;
                case "city":
                    $output = @$ipdat->geoplugin_city;
                    break;
                case "state":
                    $output = @$ipdat->geoplugin_regionName;
                    break;
                case "region":
                    $output = @$ipdat->geoplugin_regionName;
                    break;
                case "country":
                    $output = @$ipdat->geoplugin_countryName;
                    break;
                case "countrycode":
                    $output = @$ipdat->geoplugin_countryCode;
                    break;
            }
        }
    }
    return $output;
}

?>

วิธีใช้:

ตัวอย่างที่ 1: รับรายละเอียดที่อยู่ IP ของผู้เยี่ยมชม

<?php

echo ip_info("Visitor", "Country"); // India
echo ip_info("Visitor", "Country Code"); // IN
echo ip_info("Visitor", "State"); // Andhra Pradesh
echo ip_info("Visitor", "City"); // Proddatur
echo ip_info("Visitor", "Address"); // Proddatur, Andhra Pradesh, India

print_r(ip_info("Visitor", "Location")); // Array ( [city] => Proddatur [state] => Andhra Pradesh [country] => India [country_code] => IN [continent] => Asia [continent_code] => AS )

?>

ตัวอย่างที่ 2: รับรายละเอียดที่อยู่ IP ใด ๆ [สนับสนุน IPV4 และ IPV6]

<?php

echo ip_info("173.252.110.27", "Country"); // United States
echo ip_info("173.252.110.27", "Country Code"); // US
echo ip_info("173.252.110.27", "State"); // California
echo ip_info("173.252.110.27", "City"); // Menlo Park
echo ip_info("173.252.110.27", "Address"); // Menlo Park, California, United States

print_r(ip_info("173.252.110.27", "Location")); // Array ( [city] => Menlo Park [state] => California [country] => United States [country_code] => US [continent] => North America [continent_code] => NA )

?>

1
ทำไมฉันถึงไม่รู้ตลอดเวลากับทุก ip ใช้รหัสเดียวกัน
echo_Me

1
คุณจะได้รับ "ไม่รู้จัก" file_get_contents()อาจจะเป็นเพราะเซิร์ฟเวอร์ของคุณไม่อนุญาตให้ เพียงตรวจสอบไฟล์ error_log ของคุณ วิธีแก้ปัญหา: ดูคำตอบของฉัน
Kai Noack

3
อาจเป็นเพราะคุณตรวจสอบ localy (192.168.1.1 / 127.0.0.1 / 10.0.0.1)
Hontoni

1
อย่าลืมแคชผลลัพธ์ในช่วงเวลาที่กำหนด นอกจากนี้โปรดทราบว่าคุณไม่ควรพึ่งพาเว็บไซต์อื่นเพื่อรับข้อมูลใด ๆ เว็บไซต์อาจหยุดทำงานบริการอาจหยุด ฯลฯ และหากคุณได้รับจำนวนผู้เข้าชมเว็บไซต์ของคุณเพิ่มขึ้นบริการนี้อาจห้ามคุณ
machineaddict

1
ติดตามเมื่อ: นี่เป็นปัญหาเมื่อทดสอบเว็บไซต์บน localhost มีวิธีแก้ไขสำหรับการทดสอบอย่างไร? ใช้มาตรฐาน localhost IP 127.0.0.1
นิค

54

คุณสามารถใช้ API อย่างง่ายจากhttp://www.geoplugin.net/

$xml = simplexml_load_file("http://www.geoplugin.net/xml.gp?ip=".getRealIpAddr());
echo $xml->geoplugin_countryName ;


echo "<pre>";
foreach ($xml as $key => $value)
{
    echo $key , "= " , $value ,  " \n" ;
}
echo "</pre>";

ฟังก์ชั่นที่ใช้

function getRealIpAddr()
{
    if (!empty($_SERVER['HTTP_CLIENT_IP']))   //check ip from share internet
    {
      $ip=$_SERVER['HTTP_CLIENT_IP'];
    }
    elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))   //to check ip is pass from proxy
    {
      $ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
    }
    else
    {
      $ip=$_SERVER['REMOTE_ADDR'];
    }
    return $ip;
}

เอาท์พุต

United States
geoplugin_city= San Antonio
geoplugin_region= TX
geoplugin_areaCode= 210
geoplugin_dmaCode= 641
geoplugin_countryCode= US
geoplugin_countryName= United States
geoplugin_continentCode= NA
geoplugin_latitude= 29.488899230957
geoplugin_longitude= -98.398696899414
geoplugin_regionCode= TX
geoplugin_regionName= Texas
geoplugin_currencyCode= USD
geoplugin_currencySymbol= $
geoplugin_currencyConverter= 1

มันทำให้คุณมีตัวเลือกมากมายที่คุณสามารถเล่นได้

ขอบคุณ

:)


1
มันเจ๋งจริงๆ แต่ในขณะที่การทดสอบที่นี่ไม่มีค่าในฟิลด์ต่อไปนี้ "geoplugin_city, geoplugin_region, geoplugin_regionCode, geoplugin_regionName" .. เหตุผลคืออะไร? มีวิธีแก้ไขไหม? ขอบคุณล่วงหน้า
WebDevRon

31

ฉันลองคำตอบของจันทรา แต่การกำหนดค่าเซิร์ฟเวอร์ของฉันไม่อนุญาตให้ใช้file_get_contents ()

PHP Warning: file_get_contents() URL file-access is disabled in the server configuration

ฉันแก้ไขโค้ดของจันทราเพื่อให้ทำงานกับเซิร์ฟเวอร์เช่นนั้นโดยใช้ cURL:

function ip_visitor_country()
{

    $client  = @$_SERVER['HTTP_CLIENT_IP'];
    $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
    $remote  = $_SERVER['REMOTE_ADDR'];
    $country  = "Unknown";

    if(filter_var($client, FILTER_VALIDATE_IP))
    {
        $ip = $client;
    }
    elseif(filter_var($forward, FILTER_VALIDATE_IP))
    {
        $ip = $forward;
    }
    else
    {
        $ip = $remote;
    }
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, "http://www.geoplugin.net/json.gp?ip=".$ip);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    $ip_data_in = curl_exec($ch); // string
    curl_close($ch);

    $ip_data = json_decode($ip_data_in,true);
    $ip_data = str_replace('&quot;', '"', $ip_data); // for PHP 5.2 see stackoverflow.com/questions/3110487/

    if($ip_data && $ip_data['geoplugin_countryName'] != null) {
        $country = $ip_data['geoplugin_countryName'];
    }

    return 'IP: '.$ip.' # Country: '.$country;
}

echo ip_visitor_country(); // output Coutry name

?>

หวังว่าจะช่วย ;-)


2
ตามเอกสารในเว็บไซต์ของพวกเขา: "ถ้า geoplugin.net ตอบสนองอย่างสมบูรณ์หยุดแล้วคุณต้องใช้การค้นหาเกิน 120 ครั้งต่อนาที"
Rick Hellewell

ทำงานได้อย่างสวยงาม ขอบคุณ!
Najeeb


11

ใช้ MaxMind GeoIP (หรือ GeoIPLite หากคุณยังไม่พร้อมจ่าย)

$gi = geoip_open('GeoIP.dat', GEOIP_MEMORY_CACHE);
$country = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
geoip_close($gi);

@Joyce: ฉันพยายามใช้ Maxmind API และ DB แต่ฉันไม่รู้ว่าทำไมมันไม่ทำงานสำหรับฉันจริง ๆ แล้วมันใช้งานได้ทั่วไป แต่ตัวอย่างเช่นเมื่อฉันเรียกใช้ $ _SERVER ['REMOTE_ADDR'] มันแสดงให้ฉันเห็น ip นี้: 10.48.44.43, แต่เมื่อฉันใช้มันใน geoip_country_code_by_addr ($ gi, $ ip), มันจะคืนค่าอะไร, ความคิดใด ๆ ?
mOna

มันเป็นที่อยู่ IP ที่สงวนไว้ (ที่อยู่ IP ภายในจากเครือข่ายท้องถิ่นของคุณ) ลองเรียกใช้รหัสบนเซิร์ฟเวอร์ระยะไกล
จอยซ์บาบู


10

ลองใช้php-ip-2-countryจาก code.google ฐานข้อมูลที่ให้มีการอัพเดททุกวันดังนั้นจึงไม่จำเป็นต้องเชื่อมต่อกับเซิร์ฟเวอร์ภายนอกสำหรับการตรวจสอบว่าคุณโฮสต์เซิร์ฟเวอร์ SQL ของคุณเอง ดังนั้นการใช้รหัสคุณจะต้องพิมพ์:

<?php
$ip = $_SERVER['REMOTE_ADDR'];

if(!empty($ip)){
        require('./phpip2country.class.php');

        /**
         * Newest data (SQL) avaliable on project website
         * @link http://code.google.com/p/php-ip-2-country/
         */
        $dbConfigArray = array(
                'host' => 'localhost', //example host name
                'port' => 3306, //3306 -default mysql port number
                'dbName' => 'ip_to_country', //example db name
                'dbUserName' => 'ip_to_country', //example user name
                'dbUserPassword' => 'QrDB9Y8CKMdLDH8Q', //example user password
                'tableName' => 'ip_to_country', //example table name
        );

        $phpIp2Country = new phpIp2Country($ip,$dbConfigArray);
        $country = $phpIp2Country->getInfo(IP_COUNTRY_NAME);
        echo $country;
?>

รหัสตัวอย่าง (จากแหล่งข้อมูล)

<?
require('phpip2country.class.php');

$dbConfigArray = array(
        'host' => 'localhost', //example host name
        'port' => 3306, //3306 -default mysql port number
        'dbName' => 'ip_to_country', //example db name
        'dbUserName' => 'ip_to_country', //example user name
        'dbUserPassword' => 'QrDB9Y8CKMdLDH8Q', //example user password
        'tableName' => 'ip_to_country', //example table name
);

$phpIp2Country = new phpIp2Country('213.180.138.148',$dbConfigArray);

print_r($phpIp2Country->getInfo(IP_INFO));
?>

เอาท์พุต

Array
(
    [IP_FROM] => 3585376256
    [IP_TO] => 3585384447
    [REGISTRY] => RIPE
    [ASSIGNED] => 948758400
    [CTRY] => PL
    [CNTRY] => POL
    [COUNTRY] => POLAND
    [IP_STR] => 213.180.138.148
    [IP_VALUE] => 3585378964
    [IP_FROM_STR] => 127.255.255.255
    [IP_TO_STR] => 127.255.255.255
)

4
เราต้องให้ข้อมูลฐานข้อมูลเพื่อใช้งานหรือไม่ ดูเหมือนจะไม่ดี
echo_Me

10

เราสามารถใช้ geobytes.com เพื่อรับตำแหน่งโดยใช้ที่อยู่ IP ของผู้ใช้

$user_ip = getIP();
$meta_tags = get_meta_tags('http://www.geobytes.com/IPLocator.htm?GetLocation&template=php3.txt&IPAddress=' . $user_ip);
echo '<pre>';
print_r($meta_tags);

มันจะส่งคืนข้อมูลเช่นนี้

Array(
    [known] => true
    [locationcode] => USCALANG
    [fips104] => US
    [iso2] => US
    [iso3] => USA
    [ison] => 840
    [internet] => US
    [countryid] => 254
    [country] => United States
    [regionid] => 126
    [region] => California
    [regioncode] => CA
    [adm1code] =>     
    [cityid] => 7275
    [city] => Los Angeles
    [latitude] => 34.0452
    [longitude] => -118.2840
    [timezone] => -08:00
    [certainty] => 53
    [mapbytesremaining] => Free
)

ฟังก์ชั่นเพื่อรับ IP ของผู้ใช้

function getIP(){
if (isset($_SERVER["HTTP_X_FORWARDED_FOR"])){
    $pattern = "/^(([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/";
    if(preg_match($pattern, $_SERVER["HTTP_X_FORWARDED_FOR"])){
            $userIP = $_SERVER["HTTP_X_FORWARDED_FOR"];
    }else{
            $userIP = $_SERVER["REMOTE_ADDR"];
    }
}
else{
  $userIP = $_SERVER["REMOTE_ADDR"];
}
return $userIP;
}

ฉันลองใช้รหัสของคุณแล้วจะส่งคืนสิ่งนี้ให้ฉัน: Array ([รู้จัก] => false)
mOna

เมื่อฉันลองทำสิ่งนี้: $ ip = $ _SERVER ["REMOTE_ADDR"]; echo $ ip; มันส่งคืนมัน: 10.48.44.43 คุณรู้หรือไม่ว่าปัญหาคืออะไร ?? ฉันใช้ alspo maxmind geoip และเมื่อฉันใช้ geoip_country_name_by_addr ($ gi, $ ip) ก็ไม่ได้ให้อะไรฉันอีกเลย ...
mOna

@mOna มันจะส่งคืนที่อยู่ IP ของคุณ สำหรับรายละเอียดเพิ่มเติมกรุณาแบ่งปันรหัสของคุณ
Ram Sharma

ฉันพบว่าปัญหาเกิดขึ้นกับ ip ของฉันเนื่องจากเป็นเครือข่ายส่วนตัว จากนั้นฉันก็เติมไอพีจริงของฉันใน ifconfig และใช้มันในโปรแกรมของฉัน แล้วมันก็ใช้งานได้แล้ว :) ตอนนี้คำถามของฉันคือทำอย่างไรถึงจะได้ ip จริงในกรณีที่ผู้ใช้เหล่านั้นคล้ายกับฉัน? (หากพวกเขาใช้ IP ท้องถิ่น) .. ฉันเขียนรหัสของฉันที่นี่: stackoverflow.com/questions/25958564/…
mOna

9

ลองใช้รหัสบรรทัดเดียวง่ายๆนี้คุณจะได้รับประเทศและเมืองของผู้เข้าชมจากที่อยู่ระยะไกลของพวกเขา

$tags = get_meta_tags('http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=' . $_SERVER['REMOTE_ADDR']);
echo $tags['country'];
echo $tags['city'];

9

คุณสามารถใช้บริการเว็บจากhttp://ip-api.com
ในโค้ด php ของคุณได้ดังนี้:

<?php
$ip = $_REQUEST['REMOTE_ADDR']; // the IP address to query
$query = @unserialize(file_get_contents('http://ip-api.com/php/'.$ip));
if($query && $query['status'] == 'success') {
  echo 'Hello visitor from '.$query['country'].', '.$query['city'].'!';
} else {
  echo 'Unable to get location';
}
?>

แบบสอบถามมีข้อมูลอื่น ๆ อีกมากมาย:

array (
  'status'      => 'success',
  'country'     => 'COUNTRY',
  'countryCode' => 'COUNTRY CODE',
  'region'      => 'REGION CODE',
  'regionName'  => 'REGION NAME',
  'city'        => 'CITY',
  'zip'         => ZIP CODE,
  'lat'         => LATITUDE,
  'lon'         => LONGITUDE,
  'timezone'    => 'TIME ZONE',
  'isp'         => 'ISP NAME',
  'org'         => 'ORGANIZATION NAME',
  'as'          => 'AS NUMBER / NAME',
  'query'       => 'IP ADDRESS USED FOR QUERY',
)

ใช้ ip-api.com เพราะพวกเขาให้ชื่อ ISP ด้วย!
Richard Tinkler

1
ฉันใช้เพราะพวกเขายังจัดหาเขตเวลา
Roy Shoa

8

มีเวอร์ชันไฟล์แบนที่ได้รับการดูแลเป็นอย่างดีของฐานข้อมูลประเทศ ip-> ที่ดูแลโดยชุมชน Perl ที่CPAN

การเข้าถึงไฟล์เหล่านั้นไม่จำเป็นต้องมีตัวระบุข้อมูลและตัวข้อมูลเองนั้นมีขนาดประมาณ 515k

Higemaru ได้เขียนชุดคลุม PHP เพื่อพูดคุยกับข้อมูลนั้น: php-ip-country-fast


6

มีหลายวิธีที่จะทำ ...

โซลูชัน # 1:

หนึ่งในบริการของบุคคลที่สามที่คุณสามารถใช้ได้คือhttp://ipinfodb.com http://ipinfodb.comพวกเขาให้ชื่อโฮสต์ตำแหน่งทางภูมิศาสตร์และข้อมูลเพิ่มเติม

ลงทะเบียนเพื่อรับรหัส API ที่นี่: http://ipinfodb.com/register.php http://ipinfodb.com/register.phpวิธีนี้จะช่วยให้คุณสามารถดึงผลลัพธ์จากเซิร์ฟเวอร์ของพวกเขาได้หากไม่มีสิ่งนี้จะไม่ทำงาน

คัดลอกและวางโค้ด PHP ต่อไปนี้:

$ipaddress = $_SERVER['REMOTE_ADDR'];
$api_key = 'YOUR_API_KEY_HERE';

$data = file_get_contents("http://api.ipinfodb.com/v3/ip-city/?key=$api_key&ip=$ipaddress&format=json");
$data = json_decode($data);
$country = $data['Country'];

Downside:

อ้างจากเว็บไซต์ของพวกเขา:

API ฟรีของเรากำลังใช้รุ่น IP2Location Lite ซึ่งให้ความแม่นยำที่ต่ำกว่า

โซลูชัน # 2:

ฟังก์ชันนี้จะส่งคืนชื่อประเทศโดยใช้บริการhttp://www.netip.de/

$ipaddress = $_SERVER['REMOTE_ADDR'];
function geoCheckIP($ip)
{
    $response=@file_get_contents('http://www.netip.de/search?query='.$ip);

    $patterns=array();
    $patterns["country"] = '#Country: (.*?)&nbsp;#i';

    $ipInfo=array();

    foreach ($patterns as $key => $pattern)
    {
        $ipInfo[$key] = preg_match($pattern,$response,$value) && !empty($value[1]) ? $value[1] : 'not found';
    }

        return $ipInfo;
}

print_r(geoCheckIP($ipaddress));

เอาท์พุท:

Array ( [country] => DE - Germany )  // Full Country Name

3
การอ้างถึงจากเว็บไซต์ของพวกเขา: "คุณถูก จำกัด ที่ 1,000 คำขอ API ต่อวันหากคุณต้องการทำคำขอเพิ่มเติมหรือต้องการการสนับสนุน SSL ดูแผนชำระเงินของเรา"
Walter Tross

ฉันใช้มันในเว็บไซต์ส่วนตัวของฉันดังนั้นฉันจึงโพสต์ไว้ ขอบคุณสำหรับข้อมูล ... ไม่ได้ตระหนักถึงมัน ฉันใช้ความพยายามมากขึ้นในการโพสต์ดังนั้นโปรดดูโพสต์ที่อัปเดต :)
imbondbaby

@imbondbaby: สวัสดีฉันลองใช้รหัสของคุณแล้ว แต่สำหรับฉันแล้วมันคืนค่านี้: Array ([country] => -) ฉันไม่เข้าใจปัญหาตั้งแต่เมื่อฉันพยายามพิมพ์: $ ipaddress = $ _SERVER ['REMOTE_ADDR' ]; มันแสดง ip นี้ให้ฉัน: 10.48.44.43 ฉันไม่เข้าใจว่าทำไม ip นี้ถึงใช้งานไม่ได้! ฉันหมายถึงทุกที่ที่ฉันใส่หมายเลขนี้มันไม่ได้กลับประเทศใด !!! คุณช่วยฉันหน่อยได้ไหม
mOna

5

บริการของฉันipdata.coระบุชื่อประเทศเป็น 5 ภาษา! เช่นเดียวกับองค์กร, สกุลเงิน, เขตเวลา, รหัสการโทร, ข้อมูลธง, ผู้ให้บริการมือถือ, ข้อมูลพร็อกซีและข้อมูลสถานะโหนด Tor Exit จากที่อยู่ IPv4 หรือ IPv6 ใด ๆ

คำตอบนี้ใช้คีย์ 'ทดสอบ' API ที่มี จำกัด มากและใช้สำหรับการทดสอบการโทรไม่กี่ครั้งเท่านั้น ลงทะเบียนสำหรับรหัส API ฟรีของคุณเองและรับคำขอได้มากถึง 1,500 คำขอต่อวันเพื่อการพัฒนา

นอกจากนี้ยังสามารถปรับขนาดได้อย่างมากด้วย 10 ภูมิภาคทั่วโลกแต่ละแห่งสามารถรองรับมากกว่า 10,000 คำขอต่อวินาที!

ตัวเลือกรวมถึง; อังกฤษ (en), เยอรมัน (de), ญี่ปุ่น (ja), ฝรั่งเศส (fr) และจีนประยุกต์ (za-CH)

$ip = '74.125.230.195';
$details = json_decode(file_get_contents("https://api.ipdata.co/{$ip}?api-key=test"));
echo $details->country_name;
//United States
echo $details->city;
//Mountain View
$details = json_decode(file_get_contents("https://api.ipdata.co/{$ip}?api-key=test/zh-CN"));
echo $details->country_name;
//美国

1
พระเจ้าอวยพรคุณผู้ชาย! ฉันได้รับมากกว่าที่ฉันขอ! คำถามด่วน: ฉันสามารถใช้สำหรับแยง? ฉันหมายความว่าคุณจะไม่ทิ้งทุกเวลาเร็ว ๆ นี้ใช่ไหม?
Sayed

1
ไม่เลย :) จริง ๆ แล้วฉันเพิ่มภูมิภาคและขัดมากขึ้น ดีใจที่คุณพบว่าสิ่งนี้เป็นประโยชน์ :)
Jonathan

มีประโยชน์มากโดยเฉพาะกับ params เพิ่มเติมแก้ไขมากกว่าหนึ่งปัญหาสำหรับฉัน!
Sayed

3
ขอบคุณสำหรับการตอบรับเชิงบวก! ฉันได้สร้าง usecases ที่พบบ่อยที่สุดสำหรับเครื่องมือดังกล่าวเป้าหมายคือการกำจัดไม่ต้องดำเนินการใด ๆ เพิ่มเติมหลังจากระบุตำแหน่งทางภูมิศาสตร์ยินดีที่จะเห็นการจ่ายเงินให้กับผู้ใช้
Jonathan

4

ไม่แน่ใจว่านี่เป็นบริการใหม่ แต่ตอนนี้ (2016) วิธีที่ง่ายที่สุดใน php คือการใช้บริการเว็บ php ของ geoplugin: http://www.geoplugin.net/php.gp :

การใช้งานขั้นพื้นฐาน:

// GET IP ADDRESS
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
    $ip = $_SERVER['HTTP_CLIENT_IP'];
} else if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else if (!empty($_SERVER['REMOTE_ADDR'])) {
    $ip = $_SERVER['REMOTE_ADDR'];
} else {
    $ip = false;
}

// CALL THE WEBSERVICE
$ip_info = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$ip));

พวกเขายังมีคลาสที่สร้างเสร็จแล้ว: http://www.geoplugin.com/_media/webservices/geoplugin.class.php.tgz?id=webservices%3Aphp&cache=cache


คุณใช้elseหลังจากelseซึ่งทำให้เกิดข้อผิดพลาด คุณพยายามป้องกันอะไร REMOTE_ADDR ควรพร้อมใช้งานตลอดเวลาหรือไม่
AlexioVay

@ Vaia - บางทีมันควรจะเป็นแต่คุณไม่เคยรู้
billynoah

มีกรณีที่ไม่มีให้คุณรู้หรือไม่?
AlexioVay

2
@Vaia - จากเอกสารของ PHP เมื่อ$_SERVER: "ไม่มีการรับประกันว่าทุกเว็บเซิร์ฟเวอร์จะให้สิ่งเหล่านี้ใด ๆ เซิร์ฟเวอร์อาจละเว้นบางอย่างหรือให้ผู้อื่นที่ไม่อยู่ในรายการที่นี่"
billynoah

1
โปรดทราบว่ามีการ จำกัด การร้องขอ จากเว็บไซต์ของพวกเขา: "ถ้า geoplugin.net ตอบสนองอย่างสมบูรณ์หยุดแล้วคุณต้องใช้การค้นหาเกิน 120 ครั้งต่อนาที"
Rick Hellewell

2

ฉันกำลังใช้ipinfodb.comAPI และได้รับสิ่งที่คุณกำลังมองหา

มันฟรีอย่างสมบูรณ์คุณเพียงแค่ต้องลงทะเบียนกับพวกเขาเพื่อรับรหัส API ของคุณ คุณสามารถรวมคลาส php ของพวกเขาโดยดาวน์โหลดจากเว็บไซต์ของพวกเขาหรือคุณสามารถใช้รูปแบบ URL เพื่อดึงข้อมูล

นี่คือสิ่งที่ฉันทำ:

ฉันรวมคลาส php ไว้ในสคริปต์และใช้รหัสด้านล่าง:

$ipLite = new ip2location_lite;
$ipLite->setKey('your_api_key');
if(!$_COOKIE["visitorCity"]){ //I am using cookie to store information
  $visitorCity = $ipLite->getCity($_SERVER['REMOTE_ADDR']);
  if ($visitorCity['statusCode'] == 'OK') {
    $data = base64_encode(serialize($visitorCity));
    setcookie("visitorCity", $data, time()+3600*24*7); //set cookie for 1 week
  }
}
$visitorCity = unserialize(base64_decode($_COOKIE["visitorCity"]));
echo $visitorCity['countryName'].' Region'.$visitorCity['regionName'];

แค่นั้นแหละ.


2

คุณสามารถใช้ http://ipinfo.io/เพื่อรับรายละเอียดที่อยู่ IP มันใช้งานง่าย

<?php
    function ip_details($ip)
    {
    $json = file_get_contents("http://ipinfo.io/{$ip}");
    $details = json_decode($json);
    return $details;
    }

    $details = ip_details(YoUR IP ADDRESS); 

    echo $details->city;
    echo "<br>".$details->country; 
    echo "<br>".$details->org; 
    echo "<br>".$details->hostname; /

    ?>

2

แทนที่127.0.0.1ด้วยผู้เยี่ยมชม IpAddress

$country = geoip_country_name_by_name('127.0.0.1');

คำแนะนำในการติดตั้งอยู่ที่นี่และอ่านสิ่งนี้เพื่อทราบวิธีการรับเมืองรัฐประเทศลองจิจูดลองจิจูดละติจูด ฯลฯ ...


โปรดระบุรหัสที่แท้จริงมากกว่าการเชื่อมโยงอย่างหนัก
Bram Vanroy

ข่าวภายหลังจากลิงก์: "ณ วันที่ 2 มกราคม 2019 Maxmind ยกเลิกฐานข้อมูล GeoLite ดั้งเดิมที่เราใช้ในตัวอย่างเหล่านี้ทั้งหมดคุณสามารถอ่านประกาศฉบับเต็มได้ที่นี่: support.maxmind.com/geolite-legacy-discontinuation-notice "
Rick Hellewell

2

สายการบินเดียวที่มีที่อยู่ IP ไปยังประเทศ API

echo file_get_contents('https://ipapi.co/8.8.8.8/country_name/');

> United States

ตัวอย่าง:

https://ipapi.co/country_name/ - ประเทศของคุณ

https://ipapi.co/8.8.8.8/country_name/ - ประเทศสำหรับ IP 8.8.8.8


API นี้อนุญาตการโทร API 1,000 ครั้งต่อวัน
ปรับปรุงใหม่

2

ฉันมีคำตอบสั้น ๆ ที่ฉันใช้ในโครงการ ในคำตอบของฉันฉันคิดว่าคุณมีที่อยู่ IP ของผู้เข้าชม

$ip = "202.142.178.220";
$ipdat = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=" . $ip));
//get ISO2 country code
if(property_exists($ipdat, 'geoplugin_countryCode')) {
    echo $ipdat->geoplugin_countryCode;
}
//get country full name
if(property_exists($ipdat, 'geoplugin_countryName')) {
    echo $ipdat->geoplugin_countryName;
}

1

ฉันรู้ว่านี่เก่า แต่ฉันลองแก้ไขปัญหาอื่น ๆ ที่นี่และพวกเขาดูเหมือนจะล้าสมัยหรือเพิ่งกลับเป็นโมฆะ นี่คือวิธีที่ฉันทำ

การใช้http://www.geoplugin.net/json.gp?ip=ที่ไม่ต้องการการลงทะเบียนหรือการชำระค่าบริการใด ๆ

function get_client_ip_server() {
  $ipaddress = '';
if (isset($_SERVER['HTTP_CLIENT_IP']))
  $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
else if(isset($_SERVER['HTTP_X_FORWARDED']))
  $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
  $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
else if(isset($_SERVER['HTTP_FORWARDED']))
  $ipaddress = $_SERVER['HTTP_FORWARDED'];
else if(isset($_SERVER['REMOTE_ADDR']))
  $ipaddress = $_SERVER['REMOTE_ADDR'];
else
  $ipaddress = 'UNKNOWN';

  return $ipaddress;
}

$ipaddress = get_client_ip_server();

function getCountry($ip){
    $curlSession = curl_init();
    curl_setopt($curlSession, CURLOPT_URL, 'http://www.geoplugin.net/json.gp?ip='.$ip);
    curl_setopt($curlSession, CURLOPT_BINARYTRANSFER, true);
    curl_setopt($curlSession, CURLOPT_RETURNTRANSFER, true);

    $jsonData = json_decode(curl_exec($curlSession));
    curl_close($curlSession);

    return $jsonData->geoplugin_countryCode;
}

echo "County: " .getCountry($ipaddress);

และถ้าคุณต้องการข้อมูลเพิ่มเติมเกี่ยวกับเรื่องนี้นี่คือผลตอบแทนเต็มรูปแบบของ Json:

{
  "geoplugin_request":"IP_ADDRESS",
  "geoplugin_status":200,
  "geoplugin_delay":"2ms",
  "geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href='http:\/\/www.maxmind.com'>http:\/\/www.maxmind.com<\/a>.",
  "geoplugin_city":"Current City",
  "geoplugin_region":"Region",
  "geoplugin_regionCode":"Region Code",
  "geoplugin_regionName":"Region Name",
  "geoplugin_areaCode":"",
  "geoplugin_dmaCode":"650",
  "geoplugin_countryCode":"US",
  "geoplugin_countryName":"United States",
  "geoplugin_inEU":0,
  "geoplugin_euVATrate":false,
  "geoplugin_continentCode":"NA",
  "geoplugin_continentName":"North America",
  "geoplugin_latitude":"37.5563",
  "geoplugin_longitude":"-99.9413",
  "geoplugin_locationAccuracyRadius":"5",
  "geoplugin_timezone":"America\/Chicago",
  "geoplugin_currencyCode":"USD",
  "geoplugin_currencySymbol":"$",
  "geoplugin_currencySymbol_UTF8":"$",
  "geoplugin_currencyConverter":1
}

1

ฉันเขียนชั้นเรียนโดยใช้คำตอบ "จันทรานาคก้า" หวังว่ามันจะช่วยให้ผู้คนประหยัดข้อมูลจาก geoplugin ไปยังเซสชันดังนั้นการโหลดจะเร็วขึ้นมากเมื่อเรียกคืนข้อมูล นอกจากนี้ยังบันทึกค่าลงในอาร์เรย์ส่วนตัวเพื่อให้การเรียกคืนในรหัสเดียวกันนั้นเร็วที่สุดเท่าที่จะเป็นไปได้

class Geo {
private $_ip = null;
private $_useSession = true;
private $_sessionNameData = 'GEO_SESSION_DATA';
private $_hasError = false;
private $_geoData = [];

const PURPOSE_SUPPORT = [
    "all", "*", "location",
    "request",
    "latitude", 
    "longitude",
    "accuracy",
    "timezonde",
    "currencycode",
    "currencysymbol",
    "currencysymbolutf8",
    "country", 
    "countrycode", 
    "state", "region", 
    "city", 
    "address",
    "continent", 
    "continentcode"
];
const CONTINENTS = [
    "AF" => "Africa",
    "AN" => "Antarctica",
    "AS" => "Asia",
    "EU" => "Europe",
    "OC" => "Australia (Oceania)",
    "NA" => "North America",
    "SA" => "South America"
];

function __construct($ip = null, $deepDetect = true, $useSession = true)
{
    // define the session useage within this class
    $this->_useSession = $useSession;
    $this->_startSession();

    // define a ip as far as possible
    $this->_ip = $this->_defineIP($ip, $deepDetect);

    // check if the ip was set
    if (!$this->_ip) {
        $this->_hasError = true;
        return $this;
    }

    // define the geoData
    $this->_geoData = $this->_fetchGeoData();

    return $this;
}

function get($purpose)
{
    // making sure its lowercase
    $purpose = strtolower($purpose);

    // makeing sure there are no error and the geodata is not empty
    if ($this->_hasError || !count($this->_geoData) && !in_array($purpose, self::PURPOSE_SUPPORT)) {
        return 'error';
    }

    if (in_array($purpose, ['*', 'all', 'location']))  {
        return $this->_geoData;
    }

    if ($purpose === 'state') $purpose = 'region';

    return (isset($this->_geoData[$purpose]) ? $this->_geoData[$purpose] : 'missing: '.$purpose);
}

private function _fetchGeoData()
{
    // check if geo data was set before
    if (count($this->_geoData)) {
        return $this->_geoData;
    }

    // check possible session
    if ($this->_useSession && ($sessionData = $this->_getSession($this->_sessionNameData))) {
        return $sessionData;
    }

    // making sure we have a valid ip
    if (!$this->_ip || $this->_ip === '127.0.0.1') {
        return [];
    }

    // fetch the information from geoplusing
    $ipdata = @json_decode($this->curl("http://www.geoplugin.net/json.gp?ip=" . $this->_ip));

    // check if the data was fetched
    if (!@strlen(trim($ipdata->geoplugin_countryCode)) === 2) {
        return [];
    }

    // make a address array
    $address = [$ipdata->geoplugin_countryName];
    if (@strlen($ipdata->geoplugin_regionName) >= 1)
        $address[] = $ipdata->geoplugin_regionName;
    if (@strlen($ipdata->geoplugin_city) >= 1)
        $address[] = $ipdata->geoplugin_city;

    // makeing sure the continentCode is upper case
    $continentCode = strtoupper(@$ipdata->geoplugin_continentCode);

    $geoData = [
        'request' => @$ipdata->geoplugin_request,
        'latitude' => @$ipdata->geoplugin_latitude,
        'longitude' => @$ipdata->geoplugin_longitude,
        'accuracy' => @$ipdata->geoplugin_locationAccuracyRadius,
        'timezonde' => @$ipdata->geoplugin_timezone,
        'currencycode' => @$ipdata->geoplugin_currencyCode,
        'currencysymbol' => @$ipdata->geoplugin_currencySymbol,
        'currencysymbolutf8' => @$ipdata->geoplugin_currencySymbol_UTF8,
        'city' => @$ipdata->geoplugin_city,
        'region' => @$ipdata->geoplugin_regionName,
        'country' => @$ipdata->geoplugin_countryName,
        'countrycode' => @$ipdata->geoplugin_countryCode,
        'continent' => self::CONTINENTS[$continentCode],
        'continentcode' => $continentCode,
        'address' => implode(", ", array_reverse($address))
    ];

    if ($this->_useSession) {
        $this->_setSession($this->_sessionNameData, $geoData);
    }

    return $geoData;
}

private function _startSession()
{
    // only start a new session when the status is 'none' and the class
    // requires a session
    if ($this->_useSession && session_status() === PHP_SESSION_NONE) {
        session_start();
    }
}

private function _defineIP($ip, $deepDetect)
{
    // check if the ip was set before
    if ($this->_ip) {
        return $this->_ip;
    }

    // check if the ip given is valid
    if (filter_var($ip, FILTER_VALIDATE_IP)) {
        return $ip;
    }

    // try to get the ip from the REMOTE_ADDR
    $ip = filter_input(INPUT_SERVER, 'REMOTE_ADDR', FILTER_VALIDATE_IP);

    // check if we need to end the search for a IP if the REMOTE_ADDR did not
    // return a valid and the deepDetect is false
    if (!$deepDetect) {
        return $ip;
    }

    // try to get the ip from HTTP_X_FORWARDED_FOR
    if (($ip = filter_input(INPUT_SERVER, 'HTTP_X_FORWARDED_FOR', FILTER_VALIDATE_IP))) {
        return $ip;
    }

    // try to get the ip from the HTTP_CLIENT_IP
    if (($ip = filter_input(INPUT_SERVER, 'HTTP_CLIENT_IP', FILTER_VALIDATE_IP))) {
        return $ip;
    }

    return $ip;
}

private function _hasSession($key, $filter = FILTER_DEFAULT) 
{
    return (isset($_SESSION[$key]) ? (bool)filter_var($_SESSION[$key], $filter) : false);
}

private function _getSession($key, $filter = FILTER_DEFAULT)
{
    if ($this->_hasSession($key, $filter)) {
        $value = filter_var($_SESSION[$key], $filter);

        if (@json_decode($value)) {
            return json_decode($value, true);
        }

        return filter_var($_SESSION[$key], $filter);
    } else {
        return false;
    }
}

private function _setSession($key, $value) 
{
    if (is_array($value)) {
        $value = json_encode($value);
    }

    $_SESSION[$key] = $value;
}

function emptySession($key) {
    if (!$this->_hasSession($key)) {
        return;
    }

    $_SESSION[$key] = null;
    unset($_SESSION[$key]);

}

function curl($url) 
{
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $output = curl_exec($ch);
    curl_close($ch);
    return $output;
}
}

ตอบคำถาม 'op' กับคลาสนี้ที่คุณสามารถโทรหา

$country = (new \Geo())->get('country'); // United Kingdom

และคุณสมบัติอื่น ๆ ที่มีคือ:

$geo = new \Geo('185.35.50.4');
var_dump($geo->get('*')); // allias all / location
var_dump($geo->get('country'));
var_dump($geo->get('countrycode'));
var_dump($geo->get('state')); // allias region
var_dump($geo->get('city')); 
var_dump($geo->get('address')); 
var_dump($geo->get('continent')); 
var_dump($geo->get('continentcode'));   
var_dump($geo->get('request'));
var_dump($geo->get('latitude'));
var_dump($geo->get('longitude'));
var_dump($geo->get('accuracy'));
var_dump($geo->get('timezonde'));
var_dump($geo->get('currencyCode'));
var_dump($geo->get('currencySymbol'));
var_dump($geo->get('currencySymbolUTF8'));

การคืน

array(15) {
  ["request"]=>
  string(11) "185.35.50.4"
  ["latitude"]=>
  string(7) "51.4439"
  ["longitude"]=>
  string(7) "-0.1854"
  ["accuracy"]=>
  string(2) "50"
  ["timezonde"]=>
  string(13) "Europe/London"
  ["currencycode"]=>
  string(3) "GBP"
  ["currencysymbol"]=>
  string(2) "£"
  ["currencysymbolutf8"]=>
  string(2) "£"
  ["city"]=>
  string(10) "Wandsworth"
  ["region"]=>
  string(10) "Wandsworth"
  ["country"]=>
  string(14) "United Kingdom"
  ["countrycode"]=>
  string(2) "GB"
  ["continent"]=>
  string(6) "Europe"
  ["continentcode"]=>
  string(2) "EU"
  ["address"]=>
  string(38) "Wandsworth, Wandsworth, United Kingdom"
}
string(14) "United Kingdom"
string(2) "GB"
string(10) "Wandsworth"
string(10) "Wandsworth"
string(38) "Wandsworth, Wandsworth, United Kingdom"
string(6) "Europe"
string(2) "EU"
string(11) "185.35.50.4"
string(7) "51.4439"
string(7) "-0.1854"
string(2) "50"
string(13) "Europe/London"
string(3) "GBP"
string(2) "£"
string(2) "£"

0

ประเทศของผู้ใช้ APIมีสิ่งที่คุณต้องการ นี่คือตัวอย่างรหัสโดยใช้ file_get_contents () ตามที่คุณทำตอนแรก:

$result = json_decode(file_get_contents('http://usercountry.com/v1.0/json/'.$cip), true);
$result['country']['name']; // this contains what you need

1
API นี้อนุญาตให้เรียก API ได้ 100 ครั้งต่อวัน
ปรับปรุงใหม่

0

คุณสามารถรับผู้เยี่ยมชมประเทศและเมืองโดยใช้ ipstack geo API คุณต้องได้รับ ipstack API ของคุณเองจากนั้นใช้รหัสด้านล่าง:

<?php
 $ip = $_SERVER['REMOTE_ADDR']; 
 $api_key = "YOUR_API_KEY";
 $freegeoipjson = file_get_contents("http://api.ipstack.com/".$ip."?access_key=".$api_key."");
 $jsondata = json_decode($freegeoipjson);
 $countryfromip = $jsondata->country_name;
 echo "Country: ". $countryfromip ."";
?>

ที่มา: รับประเทศและเมืองของผู้เยี่ยมชมใน PHP โดยใช้ ipstack API


0

นี่เป็นเพียงบันทึกความปลอดภัยเกี่ยวกับการทำงานของget_client_ip()คำตอบส่วนใหญ่ที่ได้รับการรวมไว้ในฟังก์ชั่นหลักของget_geo_info_for_this_ip()ว่าส่วนใหญ่ของคำตอบที่นี่ได้รับการรวมอยู่ภายในหน้าที่หลักของ

อย่าพึ่งพาข้อมูล IP มากเกินไปในส่วนหัวของคำขอเช่นClient-IPหรือX-Forwarded-Forเพราะพวกเขาสามารถปลอมแปลงได้ง่ายมากอย่างไรก็ตามคุณควรพึ่งพา IP ต้นทางของการเชื่อมต่อ TCP ที่สร้างขึ้นจริงระหว่างเซิร์ฟเวอร์ของเราและลูกค้า$_SERVER['REMOTE_ADDR']ตามที่สามารถ ' ไม่ได้รับการสวมรอย

$_SERVER['HTTP_CLIENT_IP'] // can be spoofed 
$_SERVER['HTTP_X_FORWARDED_FOR'] // can be spoofed 
$_SERVER['REMOTE_ADDR']// can't be spoofed 

มันก็โอเคที่จะได้ประเทศแห่งการปลอมแปลง IP แต่โปรดจำไว้ว่าการใช้ IP นี้ในรูปแบบความปลอดภัยใด ๆ (เช่นการห้าม IP ที่ส่งคำขอบ่อย) จะทำลายรูปแบบความปลอดภัยทั้งหมด IMHO ฉันต้องการใช้ IP ไคลเอ็นต์จริงแม้ว่าจะเป็น IP ของพร็อกซีเซิร์ฟเวอร์


0

ลอง

  <?php
  //gives you the IP address of the visitors
  if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
      $ip = $_SERVER['HTTP_CLIENT_IP'];}
  else if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
      $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  } else {
      $ip = $_SERVER['REMOTE_ADDR'];
  }

  //return the country code
  $url = "http://api.wipmania.com/$ip";
  $country = file_get_contents($url);
  echo $country;

  ?>

ส่วน if-else จะให้ที่อยู่ IP ของผู้เข้าชมและส่วนถัดไปจะส่งคืนรหัสประเทศ ลองไปที่api.wipmania.comแล้วapi.wipmania.com/ [Your_IP_address]
Dipanshu Mahla

0

คุณสามารถใช้บริการของฉัน: https://SmartIP.ioซึ่งให้ชื่อประเทศเต็มและชื่อเมืองของที่อยู่ IP ใด ๆ นอกจากนี้เรายังแสดงเขตเวลาสกุลเงินการตรวจจับพร็อกซีการตรวจสอบโหนด TOR และการตรวจจับ Crypto

คุณเพียงแค่สมัครและรับรหัส API ฟรีซึ่งอนุญาตให้ 250,000 คำขอต่อเดือน

การใช้ไลบรารี PHP อย่างเป็นทางการการเรียก API จะกลายเป็น:

$apiKey = "your API key";
$smartIp = new SmartIP($apiKey);
$response = $smartIp->requestIPData("8.8.8.8");

echo "\nstatus code: " . $response->{"status-code"};
echo "\ncountry name: " . $response->country->{"country-name"};

ตรวจสอบเอกสาร API สำหรับข้อมูลเพิ่มเติม: https://smartip.io/docs


0

ตั้งแต่ปี 2562 MaxMind country DB สามารถใช้ได้ดังต่อไปนี้:

<?php
require_once 'vendor/autoload.php';
use MaxMind\Db\Reader;
$databaseFile = 'GeoIP2-Country.mmdb';
$reader = new Reader($databaseFile);
$cc = $reader->get($_SERVER['REMOTE_ADDR'])['country']['iso_code'] # US/GB...
$reader->close();

ที่มา: https://github.com/maxmind/MaxMind-DB-Reader-php


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.