首页 > 开发 > PHP > 正文

php防止同一IP重复投票的函数

2024-05-04 23:05:49
字体:
来源:转载
供稿:网友
注册会员,创建你的web开发资料库,<?php
$mem = new memcache;
$mem->connect("192.168.1.1", 12000);
$ip = 'xxx,xxx,xxx,xxx';
$key = ip2long($ip);
if($mem->get($key)){
  echo '您已经投过票了,明天再来吧!';
}else {
  $mem->set($key, '1', 0, 360000); //这里的格式你再查一查吧,应该是这样的!
  echo '感谢您的投票!';
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表