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.

SmsMultiSender.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 群发短信类
  5. *
  6. */
  7. class SmsMultiSender
  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://yun.tim.qq.com/v5/tlssmssvr/sendmultisms2";
  22. $this->appid = $appid;
  23. $this->appkey = $appkey;
  24. $this->util = new SmsSenderUtil();
  25. }
  26. /**
  27. * 普通群发
  28. *
  29. * 普通群发需明确指定内容,如果有多个签名,请在内容中以【】的方式添加到信息内容中,
  30. * 否则系统将使用默认签名。
  31. *
  32. *
  33. * @param int $type 短信类型,0 为普通短信,1 营销短信
  34. * @param string $nationCode 国家码,如 86 为中国
  35. * @param array $phoneNumbers 不带国家码的手机号列表
  36. * @param string $msg 信息内容,必须与申请的模板格式一致,否则将返回错误
  37. * @param string $extend 扩展码,可填空串
  38. * @param string $ext 服务端原样返回的参数,可填空串
  39. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  40. */
  41. public function send($type, $nationCode, $phoneNumbers, $msg, $extend = "", $ext = "")
  42. {
  43. $random = $this->util->getRandom();
  44. $curTime = time();
  45. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  46. $data = new \stdClass();
  47. $data->tel = $this->util->phoneNumbersToArray($nationCode, $phoneNumbers);
  48. $data->type = $type;
  49. $data->msg = $msg;
  50. $data->sig = $this->util->calculateSig($this->appkey, $random,
  51. $curTime, $phoneNumbers);
  52. $data->time = $curTime;
  53. $data->extend = $extend;
  54. $data->ext = $ext;
  55. return $this->util->sendCurlPost($wholeUrl, $data);
  56. }
  57. /**
  58. * 指定模板群发
  59. *
  60. *
  61. * @param string $nationCode 国家码,如 86 为中国
  62. * @param array $phoneNumbers 不带国家码的手机号列表
  63. * @param int $templId 模板id
  64. * @param array $params 模板参数列表,如模板 {1}...{2}...{3},那么需要带三个参数
  65. * @param string $sign 签名,如果填空串,系统会使用默认签名
  66. * @param string $extend 扩展码,可填空串
  67. * @param string $ext 服务端原样返回的参数,可填空串
  68. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  69. */
  70. public function sendWithParam($nationCode, $phoneNumbers, $templId, $params,
  71. $sign = "", $extend = "", $ext = "")
  72. {
  73. $random = $this->util->getRandom();
  74. $curTime = time();
  75. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  76. $data = new \stdClass();
  77. $data->tel = $this->util->phoneNumbersToArray($nationCode, $phoneNumbers);
  78. $data->sign = $sign;
  79. $data->tpl_id = $templId;
  80. $data->params = $params;
  81. $data->sig = $this->util->calculateSigForTemplAndPhoneNumbers(
  82. $this->appkey, $random, $curTime, $phoneNumbers);
  83. $data->time = $curTime;
  84. $data->extend = $extend;
  85. $data->ext = $ext;
  86. return $this->util->sendCurlPost($wholeUrl, $data);
  87. }
  88. }