> php教程 > php手册 > 본문

新浪通过IP地址获取当前地理位置

WBOY
풀어 주다: 2016-06-07 11:42:14
원래의
1062명이 탐색했습니다.

新浪通过IP地址获取当前地理位置(ip端、国家、省份、城市、运营商)的php接口很强大呢
/**<br>  * 取得地理位置信息<br>  * $format : js json string<br>  * return $array<br>  */<br> function iplookup($format='json'){<br>     //返回Sina地理位置信息<br>     $res = restRequest('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format='.$format);<br>     $res = json_decode($res,true);<br>     return $res;<br> }/**<br>  * 调用REST服务<br>  */<br> function restRequest($url, $method = 'GET', $data, $contentType = 'application/json', $timeout = 30, $proxy = false) {<br>     $ch = null;<br>     if ('POST' === strtoupper($method)) {<br>         $ch = curl_init($url);<br>         curl_setopt($ch, CURLOPT_POST, 1);<br>         curl_setopt($ch, CURLOPT_HEADER,0 );<br>         curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);<br>         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br>         curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);<br>         curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);<br>         if($contentType) {<br>             curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:'.$contentType));<br>         }<br>         if(is_string($data)){<br>             curl_setopt($ch, CURLOPT_POSTFIELDS, $data);<br>         } else {<br>             curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));<br>         }<br>     } elseif('GET' === strtoupper($method)) {<br>         if(is_string($data)) {<br>             $real_url = $url. (strpos($url, '?') === false ? '?' : ''). $data;<br>         } else {<br>             $real_url = $url. (strpos($url, '?') === false ? '?' : ''). http_build_query($data);<br>         }<br>         $ch = curl_init($real_url);<br>         curl_setopt($ch, CURLOPT_HEADER, 0);<br>         curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:'.$contentType));<br>         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br>         curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);<br>     } else {<br>         $args = func_get_args();<br>         //Log::error($args);<br>         return false;<br>     }<br>     if ($proxy) {<br>         curl_setopt($ch, CURLOPT_PROXY, $proxy);<br>     }<br>     $ret = curl_exec($ch);<br>     $info = curl_getinfo($ch);<br>     $contents = array(<br>         'httpInfo' => array(<br>             'send' => $data,<br>             'url' => $url,<br>             'ret' => $ret,<br>             'http' => $info,<br>         )<br>     );<br>     curl_close($ch);<br>     return $ret;<br> }

AD:真正免费,域名+虚机+企业邮箱=0元

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!