截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SignValidate.php 604B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\api\validate;
  3. use app\common\basics\Validate;
  4. use app\common\model\sign_daily\UserSign;
  5. /**
  6. * 签到验证
  7. * Class Sign
  8. * @package app\api\validate
  9. */
  10. class SignValidate extends Validate
  11. {
  12. protected $rule = [
  13. 'user_id' => 'checkSign',
  14. ];
  15. public function checkSign($value, $data, $rule)
  16. {
  17. $today = UserSign::where(['del' => 0, 'user_id' => $value])
  18. ->whereTime('sign_time', 'today')
  19. ->findOrEmpty();
  20. if (!$today->isEmpty()) {
  21. return '您今天已签到过了';
  22. }
  23. return true;
  24. }
  25. }