Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 按语音文件fid发送语音通知类
  5. *
  6. */
  7. class FileVoiceSender
  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/sendfvoice";
  22. $this->appid = $appid;
  23. $this->appkey = $appkey;
  24. $this->util = new SmsSenderUtil();
  25. }
  26. /**
  27. *
  28. * 按语音文件fid发送语音通知
  29. *
  30. * @param string $nationCode 国家码,如 86 为中国
  31. * @param string $phoneNumber 不带国家码的手机号
  32. * @param string $fid 语音文件fid
  33. * @param string $playtimes 播放次数,可选,最多3次,默认2次
  34. * @param string $ext 用户的session内容,服务端原样返回,可选字段,不需要可填空串
  35. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  36. */
  37. public function send($nationCode, $phoneNumber, $fid, $playtimes = 2, $ext = "")
  38. {
  39. $random = $this->util->getRandom();
  40. $curTime = time();
  41. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  42. // 按照协议组织 post 包体
  43. $data = new \stdClass();
  44. $tel = new \stdClass();
  45. $tel->nationcode = "".$nationCode;
  46. $tel->mobile = "".$phoneNumber;
  47. $data->tel = $tel;
  48. $data->fid = $fid;
  49. if ($playtimes == 1) {
  50. $data->playtimes = 1;
  51. } else if ($playtimes == 3) {
  52. $data->playtimes = 3;
  53. } else {
  54. $data->playtimes = 2;
  55. }
  56. // app凭证
  57. $data->sig = $this->util->calculateSig($this->appkey, $random,
  58. $curTime, array($phoneNumber));
  59. // unix时间戳,请求发起时间,如果和系统时间相差超过10分钟则会返回失败
  60. $data->time = $curTime;
  61. $data->ext = $ext;
  62. return $this->util->sendCurlPost($wholeUrl, $data);
  63. }
  64. }