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

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