thinksns 3.0 限制微吧发帖时间间隔15分钟

thinksns 3.0 限制微吧发帖时间间隔15分钟

 

首先备份一下这个文件,将以下代码复制在 APPS/WEIBA/LIB/ACTION/INDEXACTION.CLASS.PHP  里面,放在331行下面,保存!

$uid = $this->mid;
$res = D(‘weiba_post’)->where(‘post_uid=’ . $uid)->order(‘post_id desc’)->find();
//用户最后一次发表的内容的时间
$time = $res[‘post_time’];
$poorTime = time() – $time;
if($poorTime < 900){
$this->error(‘对不起15分钟内只能发送一篇帖子’, true);
}

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据