環境ThinkPHP+Redis 1.IP保存文件,文件名自定義,與後文對應 2.獲取IP信息腳本.sh文件 #!/bin/bash #variables ip_txt_path=/www/wwwroot/checkip/china_ip.txt; ip_url='http://ftp.apnic. ...
環境ThinkPHP+Redis
1.IP保存文件,文件名自定義,與後文對應
2.獲取IP信息腳本.sh文件
#!/bin/bash #variables ip_txt_path=/www/wwwroot/checkip/china_ip.txt; ip_url='http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest'; php_path=/www/server/php/72/bin/php script_path=/www/wwwroot/checkip/putip2redis.php #mv old txt cur_time=$(date +"%Y%m%d%H%M%S"); if [ -f ${ip_txt_path} ];then mv ${ip_txt_path} ${ip_txt_path}_${cur_time}; fi #download /usr/bin/curl ${ip_url} | grep ipv4 | grep CN | awk -F\| '{ printf("%s/%d\n", $4, 32-log($5)/log(2)) }' >${ip_txt_path} #parse 2 redis echo "begin parse ip\n"; ${php_path} ${script_path}
3.將IP信息保存到Redis中,上圖中putip2redis.php文件
<?php /* 解析國內ip地址列表,以ip地址的第一段為索引, 保存到redis中的一個hash中 by 劉巨集締 2020.04.02 */ //------------------------------------------------settings ini_set("display_errors","On"); error_reporting(E_ALL); //------------------------------------------------constant define("REDIS_SERVER", "127.0.0.1"); define("REDIS_PORT", "6379"); define("IP_FILE", "/www/wwwroot/isipchina/china_ip.txt"); define("IP_HASH_NAME", "china_ip_hash"); //------------------------------------------------link 4 redis $redis_link = new \Redis(); $redis_link->connect(REDIS_SERVER,REDIS_PORT); //------------------------------------------------main set_ip_list(IP_FILE); //------------------------------------------------function //處理所有的ip範圍到redis function set_ip_list($ip_file) { //從文件中得到所有的國內ip $arr_all = file($ip_file); //遍歷,得到所有的第一段 $arr_first = array(); foreach ($arr_all as $k => $rangeone) { $rangeone = trim($rangeone); if ($rangeone == "") { continue; } $first = explode(".", $rangeone); if (isset($first[0]) && $first[0]!='') { $arr_first[] = $first[0]; } } //對所有的第一段去除重覆 $arr_first = array_unique($arr_first); //得到線上hash的所有key $arr_hkeys = hash_keys(IP_HASH_NAME); //如果一個線上已存在的key不再存在於新ip的第一段的數組中 //需要從線上hash中刪除 if (is_array($arr_hkeys) && sizeof($arr_hkeys)>0) { foreach($arr_hkeys as $k => $hkey_one) { if (!in_array($hkey_one, $arr_first)) { echo "will delete :".$hkey_one."\n"; hash_delete_hkey(IP_HASH_NAME,$hkey_one); } } } //得到每個第一段下麵對應的所有ip地址段,保存到redis foreach ($arr_first as $k => $first) { add_a_list_by_first($first,$arr_all); } } //把所有的第一段為指定數字的ip,添加到redis function add_a_list_by_first($first,$arr) { $arr_line = array(); foreach ($arr as $k => $rangeone) { $rangeone = trim($rangeone); $first_a = explode(".", $rangeone); if (!isset($first_a[0]) || $first_a[0] == "") { continue; } $cur_first = $first_a[0]; if ($cur_first == $first) { $line = get_line_by_rangeone($rangeone); //echo "line:".$line."\n"; $arr_line[] = $line; } else { continue; } } if (sizeof($arr_line) >0) { $key_name = $first; hash_set(IP_HASH_NAME,$key_name,$arr_line); } } //得到一個ip地址段的起始範圍 function get_line_by_rangeone($networkRange) { $s = explode('/', $networkRange); $network_start = (double) (sprintf("%u", ip2long($s[0]))); $network_len = pow(2, 32 - $s[1]); $network_end = $network_start + $network_len - 1; $line = $network_start."--".$network_end; return $line; } //redis set 一個數組到hash function hash_set($hash_name,$key_name,$arr_value){ global $redis_link; $str_value = json_encode($arr_value); $b = $redis_link->hset($hash_name, $key_name, $str_value); } //返回redis hash中 function hash_keys($hash_name) { global $redis_link; $arr = $redis_link->hKeys($hash_name); return $arr; } //刪除一個hash的hkey function hash_delete_hkey($hash_name,$key_name) { global $redis_link; $redis_link->hdel($hash_name, $key_name); } ?>
4.運行.sh文件初始化redis數據
5.添加類文件到TP的extend下
<?php namespace ipxx; class Ipcheck { //------------------------------------------------function function getRealIp()//判斷來源IP { return $_SERVER['REMOTE_ADDR']; } //判斷一個ip是否屬於china function is_ip_in_china($ip) { //------------------------------------------------link 2 redis $ip = trim($ip); $first_a = explode(".", $ip); if (!isset($first_a[0]) || $first_a[0] == "") { //ip有誤,按國外算 return false; } $first = $first_a[0]; $arr_range = $this->hash_get(IP_HASH_NAME, $first); if (!is_array($arr_range) || sizeof($arr_range) == 0) { return false; } if ($this->is_ip_in_arr_range($ip, $arr_range) == true) { return true; } else { return false; } } //判斷一個ip是否屬於ip的range數組 function is_ip_in_arr_range($ip, $arr_range) { $ip_long = (double)(sprintf("%u", ip2long($ip))); foreach ($arr_range as $k => $one) { $one = trim($one); //echo $one.":\n"; $arr_one = explode("--", $one); if (!isset($arr_one[0]) || !isset($arr_one[1])) { continue; } $begin = $arr_one[0]; $end = $arr_one[1]; if ($ip_long >= $begin && $ip_long <= $end) { return true; } } return false; } //得到一個hash中對應key的value function hash_get($hash_name, $key_name) { //------------------------------------------------link 2 redis $redis_link = new \Redis(); $redis_link->connect(REDIS_SERVER,REDIS_PORT); $str = $redis_link->hget($hash_name, $key_name); $arr = json_decode($str, true); return $arr; } } ?>
6.引用類調用函數判斷IP
use ipxx\Ipcheck; public function test() { define("REDIS_SERVER", "127.0.0.1"); define("REDIS_PORT", "6379"); define("IP_HASH_NAME", "china_ip_hash"); $ipcheck = new Ipcheck(); $redis_link = new \Redis(); $redis_link->connect(REDIS_SERVER,REDIS_PORT); $userip=$_SERVER['REMOTE_ADDR']; $is_in = $ipcheck->is_ip_in_china($userip);//判斷一個ip是否國內的ip if ($is_in == true) { echo "china"; } else { echo "foreign"; } }