云之讯发送短信接口

时间:2021-01-02 10:44:43
【文件属性】:

文件名称:云之讯发送短信接口

文件大小:8KB

文件格式:PHP

更新时间:2021-01-02 10:44:43

发送短信

将下载的资源导入然后调用//载入ucpass类 require_once('lib/Ucpaas.class.php'); //初始化必填 $options['accountsid']='自己的accountsid'; $options['token']='自己的token'; //初始化 $options必填 $ucpass = new Ucpaas($options); //开发者账号信息查询默认为json或xml header("Content-Type:text/html;charset=utf-8"); //短信验证码(模板短信),默认以65个汉字(同65个英文)为一条(可容纳字数受您应用名称占用字符影响),超过长度短信平台将会自动分割为多条发送。分割后的多条短信将按照具体占用条数计费。 // $appId = "f16a02d81f50424da501ffc6f1eeedcc"; // $to = "17600545058"; // $templateId = "234929"; // $param=rand(1000,9999); $appId = "自己的appId"; $to = 13641283851; $templateId = "templateId"; $code = rand(1000,9999); $param=$code.',5'; $aa = json_decode($ucpass->templateSMS($appId,$to,$templateId,$param)); print_r('

');
print_r($aa->resp);
print_r('
');


网友评论