当前位置: 首页 > 站长资讯 > 正文页面

帝国cms增实现会员每天第一次登录赠送积分功能

实现功能:会员每天登陆实现赠送积分~每天一次。848网站目录_网站网址收录与提交入口

修改步骤:848网站目录_网站网址收录与提交入口

1、进入管理会员字段增加如下字段:848网站目录_网站网址收录与提交入口

字段名:LastTime 字段标识:最后登陆时间 字段类型:大数值型(INT)848网站目录_网站网址收录与提交入口

2、打开,e/class/user.php 找到大约1019行 if($set1&&$set2) 这个地方,在 $location=DoingReturnUrl($location,$_POST['ecmsfrom']); 前面增加如下代码848网站目录_网站网址收录与提交入口

PHP Code848网站目录_网站网址收录与提交入口

//会员登陆赠送点数848网站目录_网站网址收录与提交入口

$LastTime=time();848网站目录_网站网址收录与提交入口

$useridz=(int)$r[$user_userid];848网站目录_网站网址收录与提交入口

$fenus=2; //赠送积分848网站目录_网站网址收录与提交入口

$LastT=$empire->fetch1("select LastTime from {$dbtbpre}enewsmemberadd where `userid`={$useridz}");848网站目录_网站网址收录与提交入口

(int)$newstime=$LastT['LastTime'];//时间848网站目录_网站网址收录与提交入口

(int)$times=mktime(0,0,0,date('m',$LastTime),date('d',$LastTime),date('Y',$LastTime));//当前时间848网站目录_网站网址收录与提交入口

if($newstime==0){$empire->query("update {$dbtbpre}enewsmember set `userfen`=userfen+{$fenus} where `userid`={$useridz}");}else{848网站目录_网站网址收录与提交入口

if($times<$newstime && $newstime<$times+86400){848网站目录_网站网址收录与提交入口

//今天848网站目录_网站网址收录与提交入口

}else{848网站目录_网站网址收录与提交入口

$empire->query("update {$dbtbpre}enewsmember set `userfen`=userfen+{$fenus} where `userid`={$useridz}");848网站目录_网站网址收录与提交入口

}848网站目录_网站网址收录与提交入口

}848网站目录_网站网址收录与提交入口

$empire->query("update {$dbtbpre}enewsmemberadd set `LastTime`={$LastTime} where `userid`={$useridz}");848网站目录_网站网址收录与提交入口

//结束848网站目录_网站网址收录与提交入口

以上就是关于帝国cms增实现会员每天第一次登录赠送积分功能的方法,希望对大家有所帮助。848网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章