E php短信平台接口

    xiaoxiao2021-03-25  232

    现在市面上能用的短信平台有很多, 但是费用各不相同, 最便宜的当属阿里大于, 这个是本人写的一个阿里大于的短信接口, 测试可用, 放到阿里大于的php的SDK根目录即可调取

    <?php $r = ""; function sendSMS ($mobile, $content) //接口调用方式:手机号码、短信内容 { include "TopSdk.php"; date_default_timezone_set('Asia/Shanghai'); $c = new TopClient; $c->appkey = "******";//填写自己申请的appkey $c->secretKey = "****************";//填写自己申请的secretKey $req = new AlibabaAliqinFcSmsNumSendRequest; $req->setSmsType("normal"); $req->setSmsFreeSignName("****");//填写申请通过的签名,没有申请通过不能发送 $req->setSmsParam("{\"code\":\"".$content."\",\"product\":\"123\"}"); $req->setRecNum($mobile); $req->setSmsTemplateCode("SMS_48895056");//填写申请通过的短信模版 $resp = $c->execute($req); //var_dump($resp); if($resp->result->success) { return true; } else { return false; } } //$r = sendSMS("15111111111","123478"); //测试阿里大于参数配置有没有问题 //var_dump($r); ?>
    转载请注明原文地址: https://ju.6miu.com/read-277.html

    最新回复(0)