首页>技术知识>帝国CMS 帝国CMS网站调用新浪iplookup实现根据ip跳转到不同域名
帝国CMS网站
2022-05-12
帝国CMS教程学习网站--各类帝国cms系统教程、帝国cms标签调用方法、帝国CMS模板插件推荐、后台采集教程,二次开发技术等各类技术教程知识,供广大网友查询学习。
$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');
}
?>


显示全部内容...