| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /**
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/8/29
- * Time: 下午7:07
- */
- namespace app\common\services\aliyun;
- use app\common\services\aliyun\Api\Sms\Request\V20170525\SendSmsRequest;
- use app\common\services\aliyun\Core\Config;
- use app\common\services\aliyun\Core\DefaultAcsClient;
- use app\common\services\aliyun\Core\Profile\DefaultProfile;
- // 加载区域结点配置
- Config::load();
- class AliyunSMS
- {
- /**
- * 构造器
- *
- * @param string $accessKeyId 必填,AccessKeyId
- * @param string $accessKeySecret 必填,AccessKeySecret
- */
- public function __construct($accessKeyId, $accessKeySecret)
- {
- // 短信API产品名
- $product = "Dysmsapi";
- // 短信API产品域名
- $domain = "dysmsapi.aliyuncs.com";
- // 暂时不支持多Region
- $region = "cn-hangzhou";
- // 服务结点
- $endPointName = "cn-hangzhou";
- // 初始化用户Profile实例
- $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret);
- // 增加服务结点
- DefaultProfile::addEndpoint($endPointName, $region, $product, $domain);
- // 初始化AcsClient用于发起请求
- $this->acsClient = new DefaultAcsClient($profile);
- }
- /**
- * 发送短信范例
- *
- * @param string $signName <p>
- * 必填, 短信签名,应严格"签名名称"填写,参考:<a href="https://dysms.console.aliyun.com/dysms.htm#/sign">短信签名页</a>
- * </p>
- * @param string $templateCode <p>
- * 必填, 短信模板Code,应严格按"模板CODE"填写, 参考:<a href="https://dysms.console.aliyun.com/dysms.htm#/template">短信模板页</a>
- * (e.g. SMS_0001)
- * </p>
- * @param string $phoneNumbers 必填, 短信接收号码 (e.g. 12345678901)
- * @param array|null $templateParam <p>
- * 选填, 假如模板中存在变量需要替换则为必填项 (e.g. Array("code"=>"12345", "product"=>"阿里通信"))
- * </p>
- * @param string|null $outId [optional] 选填, 发送短信流水号 (e.g. 1234)
- * @return stdClass
- */
- public function sendSms($signName, $templateCode, $phoneNumbers, $templateParam = null, $outId = null) {
- // 初始化SendSmsRequest实例用于设置发送短信的参数
- $request = new SendSmsRequest();
- // 必填,设置雉短信接收号码
- $request->setPhoneNumbers($phoneNumbers);
- // 必填,设置签名名称
- $request->setSignName($signName);
- //$request->setRegionId('cn-hangzhou');
- // 必填,设置模板CODE
- $request->setTemplateCode($templateCode);
- // 可选,设置模板参数
- if($templateParam) {
- $request->setTemplateParam(json_encode($templateParam));
- }
- // 可选,设置流水号
- if($outId) {
- $request->setOutId($outId);
- }
- // 发起访问请求
- $acsResponse = $this->acsClient->getAcsResponse($request);
- // 打印请求结果
- // var_dump($acsResponse);
- return $acsResponse;
- }
- }
|