论坛软件防洪

发布于 2024-12-04 07:36:56 字数 125 浏览 0 评论 0原文

我正在制作论坛软件。现在我想添加防洪功能。因此,当帖子发布时,date("jnY H:i:s") 就会放入表格中。现在我希望每分钟最多发 4 个帖子,或者每个帖子之间间隔 15 秒。检查这一点的最佳方法是什么?

Im making forum software. Now i want to add anti-flood. So when a post gets posted, a date("j-n-Y H:i:s") gets put in the table. Now i want a max of 4 posts per minute, or 15 seconds between each post. What is the best way to check that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡離愁欲言轉身 2024-12-11 07:36:56

您可以获取 15 秒前的时间,

$time = date( 'Y-m-d H:i:s', time() - 15 );

然后查找该用户在该时间之后发布的帖子数。如果计数大于 0,则丢弃该帖子。

SELECT COUNT(*) FROM posts WHERE user_id = $userId AND posted >= '$time'

如果您希望采用每分钟 4 个帖子的规则,请执行相同的操作,但时间为 60 秒,如果计数超过 4,则放弃。

$time = date( 'Y-m-d H:i:s', time() - 60 );

SELECT COUNT(*) FROM posts WHERE user_id = $userId AND posted >= '$time'

You can get the time 15 seconds ago with

$time = date( 'Y-m-d H:i:s', time() - 15 );

Then find the number of posts made by this user after that time. If the count is more than 0, discard the post.

SELECT COUNT(*) FROM posts WHERE user_id = $userId AND posted >= '$time'

If you'd rather have the 4 posts/minute rule, do the same thing but with 60 seconds and discard if the count is more than 4.

$time = date( 'Y-m-d H:i:s', time() - 60 );

SELECT COUNT(*) FROM posts WHERE user_id = $userId AND posted >= '$time'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文