首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php利用QQ获取ip,省份,市

2012-12-24 
php利用QQ获取ip,省,市?phpfunction get_ip_place(){$ipfile_get_contents(http://fw.qq.com/ipaddress

php利用QQ获取ip,省,市

<?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); ?>

热点排行