1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace addons\qcloudsms\library;
- use addons\qcloudsms\library\SmsSenderUtil;
- /**
- * 指定模板发送语音通知类
- *
- */
- class TtsVoiceSender
- {
- private $url;
- private $appid;
- private $appkey;
- private $util;
- /**
- * 构造函数
- *
- * @param string $appid sdkappid
- * @param string $appkey sdkappid对应的appkey
- */
- public function __construct($appid, $appkey)
- {
- $this->url = "https://cloud.tim.qq.com/v5/tlsvoicesvr/sendtvoice";
- $this->appid = $appid;
- $this->appkey = $appkey;
- $this->util = new SmsSenderUtil();
- }
- /**
- *
- * 指定模板发送语音短信
- *
- * @param string $nationCode 国家码,如 86 为中国
- * @param string $phoneNumber 不带国家码的手机号
- * @param int $templId 模板 id
- * @param array $params 模板参数列表,如模板 {1}...{2}...{3},需要带三个参数
- * @param string $playtimes 播放次数,可选,最多3次,默认2次
- * @param string $ext 用户的session内容,服务端原样返回,可选字段,不需要可填空串
- * @return string 应答json字符串,详细内容参见腾讯云协议文档
- */
- public function send($nationCode, $phoneNumber, $templId, $params, $playtimes = 2, $ext = "")
- {
- /*var_dump($nationCode);
- var_dump($phoneNumber);
- var_dump($templId);
- var_dump($params);
- var_dump($playtimes);
- exit();*/
- $random = $this->util->getRandom();
- $curTime = time();
- $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
- // 按照协议组织 post 包体
- $data = new \stdClass();
- $tel = new \stdClass();
- $tel->nationcode = "".$nationCode;
- $tel->mobile = "".$phoneNumber;
- $data->tel = $tel;
- $data->tpl_id = $templId;
- $data->params = $params;
- $data->playtimes = $playtimes;
- // app凭证
- $data->sig = $this->util->calculateSig($this->appkey, $random,
- $curTime, array($phoneNumber));
- // unix时间戳,请求发起时间,如果和系统时间相差超过10分钟则会返回失败
- $data->time = $curTime;
- $data->ext = $ext;
- //var_dump($data);exit();
- return $this->util->sendCurlPost($wholeUrl, $data);
- }
- }
|