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);
}