这篇文章主要介绍了php实现签到功能的方法,实例分析了mysql数据表的构造及thinkphp签到功能的具体实现技巧,需要的朋友可以参考下
具体如下:
数据表:
create table `members_sign` (
`id` int(11) unsigned not null auto_increment,
`uid` int(11) unsigned not null comment '用户id',
`days` tinyint(2) unsigned not null default '0' comment '连续签到的天数',
`is_share` tinyint(1) unsigned not null default '0' comment '是否分享过',
`is_sign` tinyint(1) unsigned not null default '0' comment '是否签到过',
`stime` int(11) unsigned not null default '0' comment '签到的时间',
`atime` int(11) unsigned not null default '0' comment '添加时间',
primary key (`id`),
key `index_uid` (`uid`) using btree
) engine=innodb auto_increment=162 default charset=utf8 comment='签到分享表';
controller:
<?php
namespace member\controller;
use member\controller\mcontroller;
class indexcontroller extends mcontroller {
/**
* 用户中心
* @param
*/
public function index(){
$pre = c('db_prefix');
// 日历列表
$monthsign = $this->getmonthsign();
$daylist = $this->showdays($monthsign);
// 今天签到
$data = $this->todaydata();
if($data['is_sign'] == 1){
$this->assign('issign',true);
}
$this->display();
}
/**
* 执行当天签到
* @return json 签到成功返回 {status:1,info:'已签到'}
*/
public function sign(){
$todaydata = $this->todaydata();
if($todaydata['is_sign'] == 1){
$this->successmsg('已签到');
}else{
$data = $this->getinsertdata($this->uid);
// 无今天数据
if($todaydata == null){
$data['uid'] = $this->uid;
$data['atime'] = time();
$id = m('members_sign')->add($data);
}else{
$save = m('members_sign')->where("id = {$todaydata['id']}")->save($data);
}
if($id or $save){
$score = $this->gettodayscores($data['days']);
// 为该用户添加积分
addscore($this->uid,$score);
$this->successmsg('已签到',array('score' => $score,'days'=>$data['days']));
}else{
$this->errormsg('签到失败,请刷新后重试!');
}
}
}
/**
* 返回每次签到要插入的数据
*
* @param int $uid 用户id
* @return array(
* 'days' => '天数',
* 'is_sign' => '是否签到,用1表示已经签到',
* 'stime' => '签到时间',
* );
*/
protected function getinsertdata($uid){
// 昨天的连续签到天数
$start_time = strtotime(date('y-m-d 0:0:0',time()-86400))-1;
$end_time = strtotime(date('y-m-d 23:59:59',time()-86400))+1;
$days = m('members_sign')->where("uid = $uid and atime > $start_time and atime < $end_time")->getfield('days');
if($days){
$days++;
if($days > 30){
$days = 1;
}
}else{
$days = 1;
}
return array(
'days' => $days,
'is_sign' => 1,
'stime' => time()
);
}
/**
* 用户当天签到的数据
* @return array 签到信息 is_sign,stime 等
*/
protected function todaydata(){
$time = time();
$start_stime = strtotime(date('y-m-d 0:0:0',$time))-1;
$end_stime = strtotime(date('y-m-d 23:59:59',$time))+1;
return m('members_sign')->field('atime',true)->where("uid = {$this->uid} and atime > $start_stime and atime < $end_stime")->find();
}
/**
* 积分规则,返回连续签到的天数对应的积分
*
* @param int $days 当天应该得的分数
* @return int 积分
*/
protected function gettodayscores($days){
if($days == 30){
return 50;
}else if($days > 19){
return 8;
}else if($days > 9){
return 5;
}else{
return 3;
}
}
/**
* 显示签到列表
*
* @param array $signdays 某月签到的日期 array(1,2,3,4,5,12,13)
* @param int $year 可选,年份
* @param int $month 可选,月份
* @return string 日期列表<li>1</li>....
*/
protected function showdays($signdays,$year,$month){
$time = time();
$year = $year ? $year : date('y',$time);
$month = $month ? $month : date('m',$time);
$daystotal = date('t', mktime(0, 0, 0, $month, 1, $year));
$now = date('y-m-d',$time);
$str = '';
for ($j = 1; $j <= $daystotal; $j++) {
$i++;
$someday = date('y-m-d',strtotime("$year-$month-$j"));
// 小于今天的日期样式
if ($someday <= $now){
// 当天日期样式 tdc = todaycolor
if($someday == $now){
// 当天签到过的
if(in_array($j,$signdays)){
$str .= '<li class="current fw tdc">'.$j.'</li>';
}else{
$str .= '<li class="today fw tdc">'.$j.'</li>';
}
}else{
// 签到过的日期样式 current bfc = beforecolor , fw = font-weight
if(in_array($j,$signdays)){
$str .= '<li class="current fw bfc">'.$j.'</li>';
}else{
$str .= '<li class="fw bfc">'.$j.'</li>';
}
}
}else{
$str .= '<li>'.$j.'</li>';
}
}
return $str;
}
/**
* 获取当月签到的天数,与 $this->showdays() 配合使用
* @return 当月签到日期 array(1,2,3,4,5,12,13)
*/
protected function getmonthsign(){
$time = time();
$year = date('y',$time);
$month = date('m',$time);
$day = date("t",strtotime("$year-$month"));
$start_stime = strtotime("$year-$month-1 0:0:0")-1;
$end_stime = strtotime("$year-$month-$day 23:59:59")+1;
$list = m('members_sign')->where("uid = {$this->uid} and stime > $start_stime and stime < $end_stime")->order('stime asc')->getfield('stime',true);
foreach ($list as $key => $value){
$list[$key] = date('j',$value);
}
return $list;
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助。
相关推荐:
jquery实现日历每日签到网页特效
php如何实现签到功能
实例讲解thinkphp连续签到获取积分的开发思路
以上就是php实现签到功能的方法的详细内容。
