在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一般情况下,用户浏览网页的速度都是几秒十几秒甚至更长时间刷新一页,但有时候又会遇到网页被恶意快速刷新,从而导致正常用户浏览速度缓慢,如何来解决这个问题呢?可以使用如下代码来实现每ip页面访问数量限制: <?php $min_seconds_between_refreshes = 3;#设置刷新的时间 session_start(); if(array_key_exists('last_access', $_SESSION) && time()-$min_seconds_between_refreshes <= $_SESSION['last_access']) { // The user has been here at least $min_seconds_between_refreshes seconds ago - block them exit('You are refreshing too quickly, please wait a few seconds and try again.'); } // Record now as their last access time $_SESSION['last_access'] = time(); ?> 以上代码在真实的用户环境下,是可以实现的 |
2022-07-18
2022-08-30
2022-08-17
2022-11-06
2022-08-17
请发表评论