Ip 주소 php 의 위치를 확인하는 방법

코드 예제

3
0

php 는 ip 주소에서 위치 가져 오기

$ip = $_SERVER['REMOTE_ADDR'];
$details = json_decode(file_get_contents("http://ipinfo.io/{$ip}/json"));
echo $details->city; // -> "Mountain View"
1
0

Ip 주소 위치 찾기 php

//You can use an api:
//Link to documentation: https://ip-get-geolocation.com/documentation/

$LocationArray = json_decode( file_get_contents('http://ip-get-geolocation.com/api/json/35.188.125.133'), true); 	

echo $LocationArray['country']; 	
echo $LocationArray['city']; 	
echo $LocationArray['region']; 	
echo $LocationArray['timezone']; 

비슷한 페이지

예제가있는 유사한 페이지

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................