Home  >  Article  >  Backend Development  >  PHP通过淘宝IP库查询指定ip地理位置等信息

PHP通过淘宝IP库查询指定ip地理位置等信息

WBOY
WBOYOriginal
2016-06-20 13:04:331238browse

最近淘宝公布了他们的IP查询网址 http://ip.taobao.com/,提供REST API接口查询指定IP地址的地理位置信息以及运营商等IP相关信息,不过每个用户的访问频率需小于10qps。

查询IP地址方式:http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址字串]

返回内容以json格式的。具有IP查询,IP统计等功能。各大运营商拥有的IP数等信息。

下面举例子介绍一下利用PHP语言服务器端获取指定ip位置、运营商等信息的实例:

<p><?php</p><p>/**</p>* 通过淘宝IP接口获取IP地理位置<br />* @param string $ip<br />* @return: string<br />**/<br />function getCity($ip)<br />{<br />$url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;<br />$ipinfo=json_decode(file_get_contents($url));<br />if($ipinfo->code=='1'){<br />return false;<br />}<br />$city = $ipinfo->data->region.$ipinfo->data->city;<br />return $city;<br />}<br />header("Content-Type:text/html;charset=utf-8");<br />var_dump(getCity("115.225.85.91"));<br /><p>?></p>

调用的时候吧固定的ip替换成你想查询的ip就可以了。这样方便了我们网站上集成相关ip信息查询。


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn