Sin descripción
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.

SmsVoicePromptSender.php 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 发送语音通知类
  5. *
  6. */
  7. class SmsVoicePromptSender
  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/sendvoiceprompt";
  22. $this->appid = $appid;
  23. $this->appkey = $appkey;
  24. $this->util = new SmsSenderUtil();
  25. }
  26. /**
  27. *
  28. * 发送语音通知
  29. *
  30. * @param string $nationCode 国家码,如 86 为中国
  31. * @param string $phoneNumber 不带国家码的手机号
  32. * @param string $prompttype 语音类型,目前固定为2
  33. * @param string $msg 信息内容,必须与申请的模板格式一致,否则将返回错误
  34. * @param string $playtimes 播放次数,可选,最多3次,默认2次
  35. * @param string $ext 用户的session内容,服务端原样返回,可选字段,不需要可填空串
  36. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  37. */
  38. public function send($nationCode, $phoneNumber, $prompttype, $msg, $playtimes = 2, $ext = "")
  39. {
  40. $random = $this->util->getRandom();
  41. $curTime = time();
  42. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  43. // 按照协议组织 post 包体
  44. $data = new \stdClass();
  45. $tel = new \stdClass();
  46. $tel->nationcode = "".$nationCode;
  47. $tel->mobile = "".$phoneNumber;
  48. $data->tel = $tel;
  49. // 通知内容,utf8编码,支持中文英文、数字及组合,需要和语音内容模版相匹配
  50. $data->promptfile = $msg;
  51. // 固定值 2
  52. $data->prompttype = $prompttype;
  53. if ($playtimes == 1) {
  54. $data->playtimes = 1;
  55. } else if ($playtimes == 3) {
  56. $data->playtimes = 3;
  57. } else {
  58. $data->playtimes = 2;
  59. }
  60. // app凭证
  61. $data->sig = hash("sha256",
  62. "appkey=".$this->appkey."&random=".$random."&time="
  63. .$curTime."&mobile=".$phoneNumber, FALSE);
  64. // unix时间戳,请求发起时间,如果和系统时间相差超过10分钟则会返回失败
  65. $data->time = $curTime;
  66. $data->ext = $ext;
  67. return $this->util->sendCurlPost($wholeUrl, $data);
  68. }
  69. }