时间:2021-07-01 10:21:17 帮助过: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;
}
代码如下:
function get_ip_arr()
{
$ip=file_get_contents("http://fw.qq.com/ipaddress");
preg_match_all("/\"(.*)\"/",$ip,$arr);
return $arr;
}
以上就介绍了地牢猎手4存档位置 php下通过IP获取地理位置的代码小偷程序,包括了地牢猎手4存档位置方面的内容,希望对PHP教程有兴趣的朋友有所帮助。