이 기사는 주로 PHP에서 IP 주소 위치를 얻는 코드를 공유합니다. 도움이 되기를 바랍니다.
/** * 获取IP地址所在地 */ function getIPLoc($ip) { $url = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip='.$ip; $ch = curl_init($url); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 获取数据返回 $result = curl_exec($ch); curl_close($ch); // $result = httpRequest($url); $result = json_decode($result); $data = array(); if ($result && !empty($result->province)) { $data['country'] = $result->country; $data['province'] = $result->province; $data['city'] = $result->city; } return $data; }
관련 권장 사항:
위 내용은 PHP는 IP 주소 위치를 얻기 위해 코드 공유를 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!