首頁  >  文章  >  後端開發  >  通过IP获取地理位置_PHP教程

通过IP获取地理位置_PHP教程

WBOY
WBOY原創
2016-07-13 17:43:52863瀏覽

 function get_ip_place()

{
    $ip=file_get_contents("http://fw.qq.com/ipaddress");
    $ip=str_replace(", ,$ip);
    $ip2=explode("(",$ip);
    $a=substr($ip2[1],0,-2);
    $b=explode(",",$a);
    return $b;
}
 
上面来自开源中国写的真XXX,新闻我都不好意思发了,我们用正则表达式写更简单
 
来看看
 function get_ip_arr()
{
    $ip=file_get_contents("http://fw.qq.com/ipaddress");
    preg_match_all("/"(.*)"/",$ip,$arr);
    return $arr;
}
返回来的是个数组,里面可以任意去取地区或者是ip

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478810.htmlTechArticlefunction get_ip_place() { $ip=file_get_contents(http://fw.qq.com/ipaddress); $ip=str_replace(, ,$ip); $ip2=explode((,$ip); $a=substr($ip2[1],0,-2); $b=explode(,,$a); return $b; } 上...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn