东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国CMS二次开发新浪iplookup根据ip跳转到不同域名

2014-08-14 站长 站长日志

$IP_str=file_get_contents('http://int.dpool.sina.com.cn/iplookup/iplookup.php');
$IP_tmp = explode("n", $IP_str);
$IPcou=count($IP_tmp)-1;
$IP_tmp1 = explode("        ", $IP_tmp[0]);
if($IP_tmp1[5]){
        $user_IP=$IP_tmp1[5];        
}else{
        $user_IP=$IP_tmp1[4];                
}
if($user_IP == '上海'){
   header('Location: A.php');
}elseif($user_IP == '北京'){
   header('Location: B.php');
}else{
   header('Location: C.php');
}
?>


文章评论