quanwei
2 days ago 04102f7237efefa744090ed7c25f7b5d0807b679
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
 
namespace app\common\library\sms\engine;
 
use app\common\library\sms\package\aliyun\SignatureHelper;
 
/**
 * 阿里云短信模块引擎
 */
class Aliyun extends Server
{
    private $config;
 
    /**
     * 构造方法
     */
    public function __construct($config)
    {
        $this->config = $config;
    }
 
    /**
     * 发送短信通知
     */
    public function sendSms($mobile, $template_code, $templateParams)
    {
        if(empty($template_code)){
            return false;
        }
 
        $params = [];
        // *** 需用户填写部分 ***
 
        // 必填: 短信接收号码
        $params["PhoneNumbers"] = $mobile;
 
        // 必填: 短信签名,应严格按"签名名称"填写,请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/sign
        $params["SignName"] = $this->config['sign'];
 
        // 必填: 短信模板Code,应严格按"模板CODE"填写, 请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/template
        $params["TemplateCode"] = $template_code;
 
        // 可选: 设置模板参数, 假如模板中存在变量需要替换则为必填项
        $params['TemplateParam'] = $templateParams;
 
        // 可选: 设置发送短信流水号
        // $params['OutId'] = "12345";
 
        // 可选: 上行短信扩展码, 扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段
        // $params['SmsUpExtendCode'] = "1234567";
 
        // *** 需用户填写部分结束, 以下代码若无必要无需更改 ***
        if (!empty($params["TemplateParam"]) && is_array($params["TemplateParam"])) {
            $params["TemplateParam"] = json_encode($params["TemplateParam"], JSON_UNESCAPED_UNICODE);
        }
 
        // 初始化SignatureHelper实例用于设置参数,签名以及发送请求
        $helper = new SignatureHelper;
 
        // 此处可能会抛出异常,注意catch
        $response = $helper->request(
            $this->config['AccessKeyId']
            , $this->config['AccessKeySecret']
            , "dysmsapi.aliyuncs.com"
            , array_merge($params, [
                "RegionId" => "cn-hangzhou",
                "Action" => "SendSms",
                "Version" => "2017-05-25",
            ])
            // 选填: 启用https
            , true
        );
 
        // 记录日志
        log_write([
            'config' => $this->config,
            'params' => $params
        ]);
        log_write($response);
 
        $this->error = $response->Message;
        return $response->Code === 'OK';
    }
 
 
}