- <?php
- /*
- 調用騰訊的API接口
- 返回結果 var IPData = new Array("114.238.55.147","","江蘇省","淮安市");
- 0 為 IP地址
- 1 為 null
- 2 為 省份
- 3 為 城市
- */
- 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);
- print_r($ip[0]); // 這個就是你當前外網IP地址
- print_r($ip[2]); // 這個就是你所在的省份
- print_r($ip[3]); //這個就是你所在的城市了
- ?>
新聞熱點
疑難解答