php根據IP地址跳轉對應的城市,淘寶REST api調用地址直接使用

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   io   for   2014   

<?php// 定義一個函數getIP()function getIP(){global $ip;if (getenv("HTTP_CLIENT_IP"))    {$ip = getenv("HTTP_CLIENT_IP");}else if(getenv("HTTP_X_FORWARDED_FOR"))    {$ip = getenv("HTTP_X_FORWARDED_FOR");}else if(getenv("REMOTE_ADDR")){    $ip = getenv("REMOTE_ADDR");}else{ $ip = "Unknow";}return $ip;}$user_IP = getIP();$url= "http://ip.taobao.com/service/getIpInfo.php?ip=".$user_IP; $ipinfo=json_decode(file_get_contents($url)); //var_dump($ipinfo);//exit();if($ipinfo->code==‘1‘){    echo ‘查詢失敗‘;}  else {    if($ipinfo->data->region==‘廣東省‘){     //Header("HTTP/1.1 301 Moved Permanently");     //你要挑戰的 URL地址     //Header("Location: http://londit-53e57d6eeff96.com.1188.url-test.com/1.php");    }    //其他省市就直接寫入到     $ipinfo->data->region裡跳轉到對應的url
//這裡可以繼續if elseif繼續吧剩餘的城市寫完到對應的ip地址
//親測可用2014年8月11日10:25:28
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.