Sms.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Sms as smss;
  5. use think\facade\Validate;
  6. use think\Request;
  7. /**
  8. * @title 发送短信
  9. * @controller Sms
  10. * @group pub
  11. */
  12. class Sms extends Api
  13. {
  14. /**
  15. * @title 发送短信
  16. * @desc 发送短信
  17. * @url /api/Sms/alsend
  18. * @method POST
  19. * @tag 基础
  20. * @header
  21. * @param name:phone type:string require:1 desc:手机号
  22. * @param name:event type:string require:0 desc:发送类型register:注册forgetpwd:修改密码login:登录changepwd:修改密码bindwechat:授权登录绑定
  23. */
  24. public function alsend()
  25. {
  26. $mobile = input("phone");
  27. $event = input("event",'register');
  28. if (!$mobile || !Validate::regex($mobile, "^1\d{10}$")) {
  29. $this->error('手机号不正确');
  30. }
  31. $result = smss::send_sms($mobile,$event);
  32. if ($result['code']){
  33. $this->success($result['msg'],$result['data']);
  34. }else{
  35. $this->error($result['msg']);
  36. }
  37. }
  38. }