暫無描述
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.

SmsVoiceVerifyCodeSender.php 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 发送语音验证码类
  5. *
  6. */
  7. class SmsVoiceVerifyCodeSender
  8. {
  9. private $url;
  10. private $appid;
  11. private $appkey;
  12. private $util;
  13. /**
  14. * 构造函数
  15. *
  16. * @param string $appid sdkappid
  17. * @param string $appkey sdkappid对应的appkey
  18. */
  19. public function __construct($appid, $appkey)
  20. {
  21. $this->url = "https://cloud.tim.qq.com/v5/tlsvoicesvr/sendvoice";
  22. $this->appid = $appid;
  23. $this->appkey = $appkey;
  24. $this->util = new SmsSenderUtil();
  25. }
  26. /**
  27. * 发送语音验证码
  28. *
  29. * @param string $nationCode 国家码,如 86 为中国
  30. * @param string $phoneNumber 不带国家码的手机号
  31. * @param string $msg 信息内容,必须与申请的模板格式一致,否则将返回错误
  32. * @param int $playtimes 播放次数,可选,最多3次,默认2次
  33. * @param string $ext 用户的session内容,服务端原样返回,可选字段,不需要可填空串
  34. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  35. */
  36. public function send($nationCode, $phoneNumber, $msg, $playtimes = 2, $ext = "")
  37. {
  38. $random = $this->util->getRandom();
  39. $curTime = time();
  40. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  41. // 按照协议组织 post 包体
  42. $data = new \stdClass();
  43. $tel = new \stdClass();
  44. $tel->nationcode = "".$nationCode;
  45. $tel->mobile = "".$phoneNumber;
  46. $data->tel = $tel;
  47. $data->msg = $msg;
  48. if ($playtimes == 1) {
  49. $data->playtimes = 1;
  50. } else if ($playtimes == 3) {
  51. $data->playtimes = 3;
  52. } else {
  53. $data->playtimes = 2;
  54. }
  55. // app凭证
  56. $data->sig = hash("sha256",
  57. "appkey=".$this->appkey."&random=".$random."&time="
  58. .$curTime."&mobile=".$phoneNumber, FALSE);
  59. // unix时间戳,请求发起时间,如果和系统时间相差超过10分钟则会返回失败
  60. $data->time = $curTime;
  61. $data->ext = $ext;
  62. return $this->util->sendCurlPost($wholeUrl, $data);
  63. }
  64. }