Validate.php 740 B

123456789101112131415161718192021222324
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace app\common\validate;
  10. class Validate extends \think\Validate {
  11. /**
  12. * 验证验证码
  13. * @param $value
  14. * @param null $rule
  15. * @param array $data
  16. * @return bool
  17. */
  18. protected function checkCode($value, $rule=null, $data=[]){
  19. return captcha_check($value);
  20. }
  21. }