Nessuna descrizione
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.

TtsVoiceSender.php 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 指定模板发送语音通知类
  5. *
  6. */
  7. class TtsVoiceSender
  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/sendtvoice";
  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 int $templId 模板 id
  33. * @param array $params 模板参数列表,如模板 {1}...{2}...{3},需要带三个参数
  34. * @param string $playtimes 播放次数,可选,最多3次,默认2次
  35. * @param string $ext 用户的session内容,服务端原样返回,可选字段,不需要可填空串
  36. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  37. */
  38. public function send($nationCode, $phoneNumber, $templId, $params, $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. $data->tpl_id = $templId;
  50. $data->params = $params;
  51. if ($playtimes == 1) {
  52. $data->playtimes = 1;
  53. } else if ($playtimes == 3) {
  54. $data->playtimes = 3;
  55. } else {
  56. $data->playtimes = 2;
  57. }
  58. // app凭证
  59. $data->sig = $this->util->calculateSig($this->appkey, $random,
  60. $curTime, array($phoneNumber));
  61. // unix时间戳,请求发起时间,如果和系统时间相差超过10分钟则会返回失败
  62. $data->time = $curTime;
  63. $data->ext = $ext;
  64. return $this->util->sendCurlPost($wholeUrl, $data);
  65. }
  66. }