Seccode.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\api\controller;
  3. use think\captcha\facade\Captcha;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 图片验证码控制器
  14. */
  15. class Seccode extends MobileMall{
  16. /**
  17. * 产生验证码
  18. * type 验证码传入可标识的信息
  19. */
  20. public function makecode() {
  21. $config = [
  22. // 验证码字体大小
  23. 'fontSize' => 40,
  24. // 验证码位数
  25. 'length' => 4,
  26. // 关闭验证码杂点
  27. 'useNoise' => false,
  28. ];
  29. config($config,'captcha');
  30. $captcha = Captcha::create();
  31. return $captcha;
  32. }
  33. /**
  34. * @api {POST} api/Seccode/check 检查验证码
  35. * @apiVersion 1.0.0
  36. * @apiGroup Seccode
  37. *
  38. * @apiParam {String} captcha 验证码
  39. *
  40. * @apiSuccess {String} code 返回码,10000为成功
  41. * @apiSuccess {String} message 返回消息
  42. * @apiSuccess {Object} result 返回数据
  43. */
  44. public function check() {
  45. $captch=input('param.captcha');
  46. if(captcha_check($captch)){
  47. ds_json_encode(10000, '');
  48. } else {
  49. ds_json_encode(10001,'验证码错误',['code'=>'']);
  50. }
  51. }
  52. }