首页 > CMS > 帝国Empire > 正文

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

2024-08-28 12:21:41
字体:
来源:转载
供稿:网友
  1. $IP_str=file_get_contents('http://int.dpool.sina.com.cn/iplookup/iplookup.php'); 
  2. $IP_tmp = explode("/n"$IP_str); 
  3. $IPcou=count($IP_tmp)-1; 
  4. $IP_tmp1 = explode("        "$IP_tmp[0]); 
  5. if($IP_tmp1[5]){ 
  6.         $user_IP=$IP_tmp1[5];         
  7. }else
  8.         $user_IP=$IP_tmp1[4];                 
  9. }//开源软件:Vevb.com 
  10. if($user_IP == '上海'){ 
  11.    header('Location: A.php'); 
  12. }elseif($user_IP == '北京'){ 
  13.    header('Location: B.php'); 
  14. }else
  15.    header('Location: C.php'); 
  16. }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表