阿里云短信发送

function sendSmsYuyue($mobile, $product) {
    require_once "SignatureHelper.php";
    $params = array ();

    // *** 需用户填写部分 ***
    // fixme 必填:是否启用https
    $security = false;

    // fixme 必填: 请参阅 https://ak-console.aliyun.com/ 取得您的AK信息
    $accessKeyId = "xxxxxx";
    $accessKeySecret = "xxxxxxx";

    // fixme 必填: 短信接收号码
    $params["PhoneNumbers"] = $mobile;

    // fixme 必填: 短信签名,应严格按"签名名称"填写,请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/sign
    $params["SignName"] = "这里签名文字";

    // fixme 必填: 短信模板Code,应严格按"模板CODE"填写, 请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/template
    $params["TemplateCode"] = "SMS_123123123";

    // fixme 可选: 设置模板参数, 假如模板中存在变量需要替换则为必填项
    $params['TemplateParam'] = Array (
        "name" => $mobile,//传递变量
        "product" => $product,//传递过来的变量
    );

    // fixme 可选: 设置发送短信流水号
    $params['OutId'] = "12345";

    // fixme 可选: 上行短信扩展码, 扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段
    $params['SmsUpExtendCode'] = "1234567";


    // *** 需用户填写部分结束, 以下代码若无必要无需更改 ***
    if(!empty($params["TemplateParam"]) && is_array($params["TemplateParam"])) {
        $params["TemplateParam"] = json_encode($params["TemplateParam"], JSON_UNESCAPED_UNICODE);
    }

    // 初始化SignatureHelper实例用于设置参数,签名以及发送请求
    $helper = new  \Aliyun\DySDKLite\SignatureHelper();

    // 此处可能会抛出异常,注意catch
    $content = $helper->request(
        $accessKeyId,
        $accessKeySecret,
        "dysmsapi.aliyuncs.com",
        array_merge($params, array(
            "RegionId" => "cn-hangzhou",
            "Action" => "SendSms",
            "Version" => "2017-05-25",
        )),
        $security
    );

    return $content;
}
    function runYuyue(){
        $a = M('Art_yuyue');
        $a->create();
        $a->add_time = time();
        $a->add();

        $mobile = I('post.mobile');
        $product = M('Art')->where(['id'=>I('post.art_id')])->getField('title');
     //所传参数一个手机号,一个产品名称
die(json_encode($this->sendSmsYuyue($mobile, $product))); // die(json_encode(['code'=>1, 'msg'=>'操作成功'])); }

其中需要引用的文件 “SignatureHelper.php”,在demo中

 

SDK及DEMO下载

https://help.aliyun.com/document_detail/55359.html?spm=a2c4g.11186623.4.5.a62019d9lXmmpa

posted @ 2019-12-25 09:20  稀米水儿  阅读(318)  评论(0编辑  收藏  举报