龙岩易富通网络科技有限公司

龙岩小程序开发,龙岩分销系统

php获取IP地理位置(一)

2015.09.10 | 198阅读 | 0条评论 | php

为了获取IP地理位置,可以用腾讯的API接口,很方便。 [php] <?php 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; } $ip=get_ip_place(); print_r($ip); ?> [/php]

赞 (

发表评论