小储云系统是一款集云商城和货源社区于一体的网站程序,搭建完毕后网站内的用户可以在里面在线付款购买商品,或充值余额后,用余额进行购买。小编对这款软件还是比较了解的,小编今天就以新增短信接口为例为大家讲解一下如何进行二次开发,我们使用的短信接口是我们短信宝短信群发平台的短信接口,我们短信宝短信群发平台非常稳定,发送速度快,注册就送测试短信,推荐大家使用。
1:打开项目:\admin\admin.sms.set.php 增加短信宝配置页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<div class= "form-group mb-3" > <label for = "example-input-normal" >短信对接通道</label> <select class= "custom-select mt-3" lay-search name= "SMSChannelConfiguration" > <option <?= $conf[ 'SMSChannelConfiguration' ] == 1 ? 'selected' : '' ?> value= "1" > 官方内置[切换此接口时,下方无需配置] </option> <option <?= $conf[ 'SMSChannelConfiguration' ] == 2 ? 'selected' : '' ?> value= "2" >阿里云 </option> <option disabled <?= $conf[ 'SMSChannelConfiguration' ] == 3 ? 'selected' : '' ?> value= "3" >腾讯云【未开放】 </option> <option disabled <?= $conf[ 'SMSChannelConfiguration' ] == 4 ? 'selected' : '' ?> value= "4" >七牛云【未开放】 </option> <option <?= $conf[ 'SMSChannelConfiguration' ] == 5 ? 'selected' : '' ?> value= "5" >短信宝 </option> </select> </div> |
2:打开项目:includes\extend\SMS.php 在108行左右修改短信发送函数
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
|
public static function SmsSend($code = '' , $phone = '' ) { global $conf; //SmsSendAliyun if ((int)$conf[ 'SMSChannelConfiguration' ] === 2) { //阿里云 $data = self::SmsSendAliyun($phone, $code); if ($data[ 'Code' ] == 'OK' ) { return [ 'code' => 1, '验证码发送成功!' ]; } return [ 'code' => -1, '验证码发送失败:' . $data[ 'Message' ] ]; } if ((int)$conf[ 'SMSChannelConfiguration' ] === 5) { $statusStr = array( "0" => "短信发送成功" , "-1" => "参数不全" , "-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!" , "30" => "密码错误" , "40" => "账号不存在" , "41" => "余额不足" , "42" => "帐户已过期" , "43" => "IP地址限制" , "50" => "内容含有敏感词" ); //短信宝 $res = self::SmsSendSmsbao($phone, $code); if ($res == '0' ) { return [ 'code' => 1, 'msg' => '验证码发送成功!' ]; } return [ 'code' => -1, 'msg' => '验证码发送失败:' . $statusStr[$res] ]; } $DataPost = [ 'act' => 'send' , 'code' => $code, 'mobile' => $phone, 'type' => self::$Type, ]; return Curl::curl( false , $DataPost, true , '/SMS/index' , 2); } |
3:在当前项目路径:includes\extend\SMS.php 新增短信宝发送函数
1
2
3
4
5
6
7
8
9
10
11
12
|
public static function SmsSendSmsbao($PhoneNumbers, $TemplateParam){ global $conf; // *** 需用户填写部分 *** $content = str_replace( '{$code}' ,$TemplateParam, $conf[ 'SMSTemplateCode' ]); $user = $conf[ 'SMSAccessKeyId' ]; //短信平台帐号 $pass = md5($conf[ 'SMSAccessKeySecret' ]); //短信平台密码 $content= '【' .$conf[ 'SMSSignName' ]. '】' .$content; //要发送的短信内容 $phone = $PhoneNumbers; //要发送短信的手机号码 $sendurl = $smsapi. "sms?u=" .$user. "&p=" .$pass. "&m=" .$phone. "&c=" .urlencode($content); return file_get_contents($sendurl) ; } |
经过上面的替换,短信宝的短信平台已经替换成功了,可以正常使用了。进行测试发送:
报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。
另外:我们已经开发好完整的小储云V3.5.1系统短信宝插件,点击此链接 下载及查看安装流程。
最新更新
电商类
CMS类
微信类