Seccode.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\api\controller;
  3. use think\captcha\facade\Captcha;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 图片验证码控制器
  15. */
  16. class Seccode extends MobileMall{
  17. /**
  18. * 产生验证码
  19. * type 验证码传入可标识的信息
  20. */
  21. public function makecode() {
  22. $config = [
  23. // 验证码字体大小
  24. 'fontSize' => 40,
  25. // 验证码位数
  26. 'length' => 4,
  27. // 关闭验证码杂点
  28. 'useNoise' => false,
  29. ];
  30. config($config,'captcha');
  31. $captcha = Captcha::create();
  32. return $captcha;
  33. }
  34. /**
  35. * @api {POST} api/Seccode/check 检查验证码
  36. * @apiVersion 1.0.0
  37. * @apiGroup Seccode
  38. *
  39. * @apiParam {String} captcha 验证码
  40. *
  41. * @apiSuccess {String} code 返回码,10000为成功
  42. * @apiSuccess {String} message 返回消息
  43. * @apiSuccess {Object} result 返回数据
  44. */
  45. public function check() {
  46. $captch=input('param.captcha');
  47. if(captcha_check($captch)){
  48. ds_json_encode(10000, '');
  49. } else {
  50. ds_json_encode(10001,'验证码错误',['code'=>'']);
  51. }
  52. }
  53. }