[PHP] 频率限制类
比如要实现
单个ip限制60秒1次
单个关键字,比如手机号,限制60秒1次,3600秒10次
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | <?php class Sina_Mail_WebAntispam { const PREFIX_WHITELIST = 'w:' ; const PREFIX_KILL = 'k:' ; const PREFIX_VERIFYCODE = 'c:' ; const PREFIX_VERIFIED = 'v:' ; const STATUS_UPDATE = '[U]' ; private $mc = null; private $config = null; private $whitelist = array (); private $keyPrefix = '' ; private $intervals = array (); private $updates = array (); private $status = array (); public function __construct( $mc , $config ) { $this ->mc = $mc ; $this ->config = $config ; if (isset( $this ->config->prefix)) { $this ->keyPrefix = $this ->config->prefix; } if (isset( $this ->config->whitelistKey)) { $wls = $this ->mc->get( $this ->config->whitelistKey); if (! empty ( $wls )) { $this ->whitelist = & $wls ; } } } public function setWhitelist(& $whitelist ) { $this ->whitelist = & $whitelist ; } /*验证限制规则*/ public function check( $ip = null, $key = null) { if (! $ip && ! $key ) { return false; } if ( $key ) { if (! is_array ( $key )) { $keys = array ( $key ); } else { $keys = $key ; } } // first filter by whitelist if (! empty ( $this ->whitelist)) { if ( $ip && $this ->filterByWhitelist( $ip , 'ip' )) { $this ->status[self::PREFIX_WHITELIST . $ip ] = 1; return true; } if ( $keys ) { foreach ( $keys as $key ) { if ( $this ->filterByWhitelist( $key , 'key' )) { $this ->status[self::PREFIX_WHITELIST . $key ] = 1; return true; } } } } if ( $ip ) { $ip = $this ->keyPrefix . $ip ; } // second, check verified ok if (! empty ( $this ->config->verified)) { if ( $ip && $this ->mc->get(self::PREFIX_VERIFIED . $ip )) { $this ->status[self::PREFIX_VERIFIED . $ip ] = 1; return true; } if ( $keys ) { foreach ( $keys as $key ) { $verifiedKey = self::PREFIX_VERIFIED . $this ->keyPrefix . $key ; if ( $this ->mc->get( $verifiedKey )) { $this ->status[ $verifiedKey ] = 1; return true; } } } } $kos = ! empty ( $this ->config->kill); // check killed if ( $kos ) { if ( $ip && $this ->mc->get(self::PREFIX_KILL . $ip )) { $this ->status[self::PREFIX_KILL . $ip ] = 1; return false; } if ( $keys ) { foreach ( $keys as $key ) { $killKey = self::PREFIX_KILL . $this ->keyPrefix . $key ; if ( $this ->mc->get( $killKey )) { $this ->status[ $killKey ] = 1; return false; } } } } // check ip rule if ( $ip && isset( $this ->config->ip)) { if (! $this ->checkRule( $ip , $this ->config->ip)) { if ( $kos && $this ->mc->set(self::PREFIX_KILL . $ip , 1, intval ( $this ->config->kill))) { $this ->status[self::PREFIX_KILL . $ip ] = 1; } return false; } } // check keys rule if ( $keys && isset( $this ->config->key)) { foreach ( $keys as $key ) { if (! $this ->checkRule( $this ->keyPrefix . $key , $this ->config->key)) { $killKey = self::PREFIX_KILL . $this ->keyPrefix . $key ; if ( $kos && $this ->mc->set( $killKey , 1, intval ( $this ->config->kill))) { $this ->status[ $killKey ] = 1; } return false; } } } return true; } /*更新限制规则*/ public function update( $c = 1, $ip = null, $key = null) { if ( is_null ( $ip ) && is_null ( $key )) { if (! empty ( $this ->updates)) { foreach ( $this ->updates as $k => $v ) { if (! $v && isset( $this ->intervals[ $k ])) { if ( $this ->mc->add( $k , $c , false, $this ->intervals[ $k ])) { $this ->status[self::STATUS_UPDATE . $k ] = $c ; continue ; } } $r = $this ->mc->increment( $k , $c ); $this ->status[self::STATUS_UPDATE . $k ] = $r ; } } } else { if (! is_null ( $ip ) && isset( $this ->config->ip)) { $rule = $this ->config->ip; foreach ( $rule as $interval => $limit ) { $k = $this ->keyPrefix . $ip . '_' . $interval ; if ( $this ->mc->add( $k , $c ,false, $interval )) { $this ->status[self::STATUS_UPDATE . $k ] = true; continue ; } $r = $this ->mc->increment( $k , $c ); $this ->status[self::STATUS_UPDATE . $k ] = $r ; } } if (! is_null ( $key ) && isset( $this ->config->key)) { $rule = $this ->config->key; if (! is_array ( $key )) { $keys = array ( $key ); } else { $keys = $key ; } foreach ( $keys as $key ) { foreach ( $rule as $interval => $limit ) { $k = $this ->keyPrefix . $key . '_' . $interval ; if ( $this ->mc->add( $k , $c ,false, $interval )) { $this ->status[self::STATUS_UPDATE . $k ] = true; continue ; } $r = $this ->mc->increment( $k , $c ); $this ->status[self::STATUS_UPDATE . $k ] = $r ; } } } } } public function checkVerifyCode( $key , $code ) { $servcode = $this ->mc->get(self::PREFIX_VERIFYCODE . $this ->keyPrefix . $key ); if ( strcasecmp ( $servcode , $code ) == 0) { $verified = intval ( $this ->config->verified); if ( $verified > 0) { $r = $this ->mc->set(self::PREFIX_VERIFIED . $this ->keyPrefix . $key , 1, false, $verified ); } else { $r = true; } if ( $r ) { $this ->mc-> delete (self::PREFIX_VERIFYCODE . $this ->keyPrefix . $key ); } return $r ; } return false; } public function isVerified( $key ) { $r = $this ->mc->get(self::PREFIX_VERIFIED . $this ->keyPrefix . $key ); if (! empty ( $r )) { return true; } else { return false; } } public function setVerifyCode( $key , $code ) { $verifytime = intval ( $this ->config->verifytime); if ( $verifytime < 1) { return false; } return $this ->mc->set(self::PREFIX_VERIFYCODE . $this ->keyPrefix . $key , $code , false, $verifytime ); } public function getStatus() { return $this ->status; } private function filterByWhitelist( $value , $key ) { // if (empty($this->whitelist[$key])) { // return false; // } // $ls = & $this->whitelist[$key]; $ls = & $this ->whitelist; foreach ( $ls as $i ) { if ( $i [ strlen ( $i ) - 1] == '.' ) { // ip segment if ( strpos ( $value , $i ) === 0) { return true; } } else { if ( strcmp ( $i , $value ) === 0) { return true; } } } return false; } private function checkRule( $key , $rule ) { $flag = true; if (! empty ( $rule )) { foreach ( $rule as $interval => $limit ) { $k = $key . '_' . $interval ; $c = $this ->mc->get( $k ); if (! $c ) { $this ->updates[ $k ] = 0; $this ->intervals[ $k ] = $interval ; $this ->status[ $k ] = 0; } else { $this ->updates[ $k ] = $c ; $this ->status[ $k ] = $c ; if ( $c >= $limit ) { $flag = false; } } } } return $flag ; } public static function getInstance( $conf ) { $mc = new Memcache(); $mc ->connect( "115.159.28.112" ); $conf =json_decode(json_encode( $conf )); return new self( $mc , $conf ); } } /* 单个ip限制60秒1次 单个关键字,比如手机号,限制60秒1次,3600秒10次 */ $conf = array ( 'prefix' => 'selfservice:' , 'key' => array (60 => 1,3600=>10), 'ip' => array (60 => 1), ); $spam =Sina_Mail_WebAntispam::getInstance( $conf ); if (! $spam ->check( '127.25.12.123' ,17610725730)){ echo "limit..." ; exit ; } //更新频率限制 $spam ->update(); |
memache中最终的存储key
十年开发经验程序员,离职全心创业中,历时三年开发出的产品《唯一客服系统》
一款基于Golang+Vue开发的在线客服系统,软件著作权编号:2021SR1462600。一套可私有化部署的网站在线客服系统,编译后的二进制文件可直接使用无需搭开发环境,下载zip解压即可,仅依赖MySQL数据库,是一个开箱即用的全渠道在线客服系统,致力于帮助广大开发者/公司快速部署整合私有化客服功能。
开源地址:唯一客服(开源学习版)
官网地址:唯一客服官网
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2018-03-27 [日常] 研究redis未授权访问漏洞利用过程
2018-03-27 [日常] CentOS安装最新版redis设置远程连接密码
2018-03-27 [日常] Apache Order Deny,Allow的用法
2016-03-27 [android] 短信的广播接收者
2016-03-27 [android] 利用广播实现ip拨号
2016-03-27 [javaEE] Tomcat的安装与配置