Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /www/wwwroot/2kxy.com/Credis/Client.php on line 1326
一段简单的代码实现只能指定ip调用API接口 - 爱看星星 - 专注于分享类博客
一段简单的代码实现只能指定ip调用API接口

一段简单的代码实现只能指定ip调用API接口

admin
2023-07-31 / 0 评论 / 45 阅读 / 正在检测是否收录...

注意事项:

   授权后该代码只能允许授权列表的ip调用接口。

使用方法:

   直接加在API接口头部即可。
   
$ip = trim($_SERVER["REMOTE_ADDR"]);
$myip = '1.1.1.1|2.2.2.2';// 需要授权的ip,多个任意字符隔开
if (strstr($myip,$ip)==false) {
    exit("你的ip->$ip没有授权噢!");
}
0

评论

博主关闭了所有页面的评论

Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /www/wwwroot/2kxy.com/Credis/Client.php on line 1326