php下通过IP获取地理位置的代码(小偷程序)

<div class="codetitle"><a style="CURSOR: pointer" data="56289" class="copybut" id="copybut56289" onclick="doCopy('code56289')"> 代码如下:

<div class="codebody" id="code56289">
function get_ip_place()
{
$ip=file_get_contents("http://fw.qq.com/ipaddress");
$ip=str_replace('"',' ',$ip);
$ip2=explode("(",$ip);
$a=substr($ip2[1],-2);
$b=explode(",",$a);
return $b;
}

上面来自开源中国写的真XXX,新闻我都不好意思发了,我们用正则表达式写更简单 来看看
<div class="codetitle"><a style="CURSOR: pointer" data="48003" class="copybut" id="copybut48003" onclick="doCopy('code48003')"> 代码如下:
<div class="codebody" id="code48003">
function get_ip_arr()
{
$ip=file_get_contents("http://fw.qq.com/ipaddress");
preg_match_all("/\"(.*)\"/",$ip,$arr);
return $arr;
}

返回来的是个数组,里面可以任意去取地区或者是ip当然也可以通过PHP读取ip地址,这个代码好处就是节约资源。

地理位置

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...