调用淘宝的ip识别
country 是地理位置
location跳转网页
添加方法:
在模版头部添加即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?php $ip = $_SERVER["REMOTE_ADDR"]; $url = ’ip.taobao.com/service/getIpInfo.php?ip=’.$ip; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true ); $output = curl_exec($ch); $result = json_decode($output,true); $data = $result[’data’]; $country = $data[’country’]; if($country == ’中国’){ header("Location:http://www.06se.com");exit(); } ?> |
文章评论