首頁 > php教程 > php手册 > 淘宝IP地址所在地的调用(PHP)

淘宝IP地址所在地的调用(PHP)

WBOY
發布: 2016-06-06 20:08:26
原創
1134 人瀏覽過

?php/** * http:/wdot.cc/ * 获取 IP 地理位置 * 淘宝IP接口 * @Return: object */function getCity($ip){$url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;$ip=json_decode(file_get_contents($url));if((string)$ip-code=='1'){ return false;

<?php /**
 * http:/wdot.cc/
 * 获取 IP  地理位置
 * 淘宝IP接口
 * @Return: object
 */
function getCity($ip)
{
$url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;
$ip=json_decode(file_get_contents($url));
if((string)$ip->code=='1'){
  return false;
  }
return $ip->data;
}
 $arr=getCity('124.71.240.1');
 print_r($arr);
/*
 返回的数据
 stdClass Object
(
    [country] => 中国
    [country_id] => CN
    [area] => 华北
    [area_id] => 100000
    [region] => 北京市
    [region_id] => 110000
    [city] => 北京市
    [city_id] => 110000
    [county] => 
    [county_id] => -1
    [isp] => 中电华通
    [isp_id] => 100022
    [ip] => 124.71.240.1
)
*/
 ?>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板