溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

TP5框架如何實(shí)現(xiàn)簽到功能

發(fā)布時間:2021-03-11 16:30:55 來源:億速云 閱讀:159 作者:TREX 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“TP5框架如何實(shí)現(xiàn)簽到功能”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

基于tp5 模型的一個簽到功能;

由于存儲所有的簽到日期數(shù)據(jù)庫會非常龐大,所以簽到日期只存儲近三個月的。

具體功能:

1、記錄最近一次的簽到時間

2、每次簽到都會添加15積分

3、有連續(xù)簽到的記錄

CREATE TABLE `sp_sign` (
 `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
 `times` datetime DEFAULT NULL COMMENT '最近一次簽到時間',
 `userid` int(11) DEFAULT NULL COMMENT '用戶id',
 `days` tinyint(6) NOT NULL DEFAULT '0' COMMENT '連續(xù)簽到的天數(shù)',
 `number` decimal(10,0) NOT NULL DEFAULT '0' COMMENT '當(dāng)月簽到給的積分',
 `one` varchar(255) DEFAULT NULL COMMENT '當(dāng)月簽到的日期,用“,”隔開',
 `two` varchar(255) DEFAULT NULL COMMENT '上個月簽到的日期,用“,”隔開',
 `three` varchar(255) DEFAULT NULL COMMENT '上上個月簽到的日期,用“,”隔開',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/**
   * 用戶簽到
   * @param array $userid 用戶id
   */
  public function add($userid)
  {
      $data = Db::name('sign')->where('userid',$userid)->select();
      if(count($data) == 0) //沒有該用戶的簽到記錄
      {
        $query4 = Db::name('sign')->insert(['times'=>date('Y-m-d H:i:s'),'userid'=>$userid,'days'=>1,'number'=>'15','one'=>date('d',time())]);
        return 1;
      }
      else
      {
        //判斷今天是否簽到
        $todayBegin=date('Y-m-d'." 00:00:00");
        $todayEnd= date('Y-m-d'." 23:59:59");
        $isexit = Db::name('sign')->field('times')->where(['userid'=>$userid])->where('times','between',[$todayBegin,$todayEnd])->select();
        if(count($isexit) == 1)  //今日已簽到
        {
          return 0;
        }
        else  //今日未簽到
        {
          $times = Db::name('sign')->where('userid',$userid)->field('times')->select();
          $time = strtotime($times[0]['times']);
 
          if((time()-$time > 24*60*60))    //上次簽到時間大于24小時,連續(xù)簽到天數(shù)清零
          {
            $query = Db::name('sign')->where('userid',$userid)->update(['days'=>1]);
          }
          else   //上次簽到時間小于24小時,連續(xù)簽到次數(shù)加1
          {
            $query = Db::name('sign')->where('userid',$userid)->setInc('days');
          }
          //更新上次簽到時間和簽到積分
          $query1 = Db::name('sign')->where('userid',$userid)->update(['times'=>date('Y-m-d H:i:s')]);
          $query2 = Db::name('sign')->where('userid',$userid)->setInc('number', 15);
 
          $sqldate = date('m',$time);  //上次簽到日期的月份
          $nowdate = date('m',time()); //當(dāng)前月份
          //記錄本次簽到日期
          if($sqldate != $nowdate) //上次簽到日期與本次簽到日期月份不一樣
          {
            $oldtime = $times[0]['times'];
            $onetime=date("Y-m-d H:i:s", strtotime("-1 month")); //獲取前1個月的時間,獲取格式為2016-12-30 13:26:13
            $twotime=date("Y-m-d H:i:s", strtotime("-2 month")); //獲取前2個月的時間
            $threetime=date("Y-m-d H:i:s", strtotime("-3 month")); //獲取前3個月的時間
 
            $rs = Db::name('sign')->where('userid',$userid)->field('one,two,three')->select();
 
            if($oldtime < $onetime && $oldtime >= $twotime)   //月份間隔 大于1個月,小于2個月
            {
              $one = date('d',time());
              $two = $rs[0]['one'];
              $three = $rs[0]['two'];
            }
            elseif($oldtime < $twotime && $oldtime >= $threetime) //月份間隔 大于2個月,小于3個月
            {
              $one = date('d',time());
              $two = '';
              $three = $rs[0]['one'];
            }
            elseif($oldtime < $threetime) //月份間隔 大于3個月
            {
              $one = date('d',time());
              $two = '';
              $three = '';
            }
            $query3 = Db::name('sign')->where('userid',$userid)->update(['one'=>$one,'two'=>$two,'three'=>$three]);
          }
          else //上次簽到日期與本次簽到日期月份一樣
          {
            $one = Db::name('sign')->where('userid',$userid)->field('one')->select();
            $arr[] = $one[0]['one'];
            $arr[] = date('d',time());
            $newones = implode(",",$arr);
            $query3 = Db::name('sign')->where('userid',$userid)->update(['one'=>$newones]);
          }
        return 1;
        }
      }
  }

“TP5框架如何實(shí)現(xiàn)簽到功能”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

tp5
AI