### SMS 短信发送方法
基于阿里大于的API进行封装
2019-02-19
**位置:**
Common\Tools\SmsTools.class.php
**参数:**
* @param $mobile 手机号
* @param $use 用途
* 1.用于注册的验证码
* 2.用于找回密码的验证码
* 3.用于用户登录的验证码
* 4.用于支付成功通知
* 5.用于催款
* 6.用于订单拆分
* 6.用于发货通知
* @param $tpl_params 模板变量数组
* 根据模板中对应的变量构造变量数组
* @return array 短信发送状态信息
**调用:**
~~~
use Common\Tools\SmsTools; // 调用封装 短信操作封装类
public function testSMS() {
$sms = new SmsTools(); // 实例化商品组件库类
$moblie = '13434337223'; // 手机号
$use = 6; // 短信用途
$tpl_params = array( // 短信模板变量数组
'name' => '张湖畔',
'delivery_no' => '1500970026',
'express' => '顺丰快递',
'express_no' => '139946438007'
);
$response = $sms->sendMessage($moblie, $use, $tpl_params);
if ($response['Code'] == 'OK') {
$data = array('success' => true, 'code' => 200, 'msg' => '短信发送成功!', 'data' => $use);
// 用json格式返回数据
$result = $this->response($data, 'json');
return $result;
}
}
~~~
**完整代码:**
~~~
/**
* @param $mobile 手机号
* @param $use 用途
* 1.用于注册的验证码
* 2.用于找回密码的验证码
* 3.用于用户登录的验证码
* 4.用于支付成功通知
* 5.用于催款
* 6.用于订单拆分
* 7.用于发货通知
* @param $tpl_params 模板变量数组
* 根据模板中对应的变量构造变量数组
* @return array 返回发送状态数组
*/
public function sendMessage($mobile, $use, $tpl_params) {
// 初始化SendSmsRequest实例用于设置发送短信的参数
$request = new SendSmsRequest();
//可选-启用https协议
//$request->setProtocol("https");
// 必填,设置短信接收号码
$request->setPhoneNumbers($mobile);
// 必填,设置签名名称,应严格按"签名名称"填写,请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/sign
$request->setSignName("COSCIA");
switch ($use){
case 1: // 用于注册的验证码
$tpl = C('SMS_TEMP_TYPE.REGISTER_CODE');
$tpl_params = $this->createAndSaveCode($mobile, 1); // 生成验证码并保存到缓存
break;
case 2: // 用于找回密码的验证码
$tpl = C('SMS_TEMP_TYPE.RESET_PASS');
$tpl_params = $this->createAndSaveCode($mobile, 2); // 生成验证码并保存到缓存
break;
case 3: // 用于用户登录的验证码
$tpl = C('SMS_TEMP_TYPE.LOGIN_CODE');
$tpl_params = $this->createAndSaveCode($mobile, 3); // 生成验证码并保存到缓存
break;
case 4: // 用于支付成功通知
break;
case 5: // 用于催款
break;
case 6: // 用于订单拆分
break;
case 7: // 用于发货通知
$tpl = C('SMS_TEMP_TYPE.DELIVERY_NOTICE');
break;
default: // 默认
}
// 必填,设置模板CODE,应严格按"模板CODE"填写, 请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/template
$request->setTemplateCode($tpl);
// 可选,设置模板参数, 假如模板中存在变量需要替换则为必填项
$request->setTemplateParam(
json_encode($tpl_params, JSON_UNESCAPED_UNICODE)
);
// 可选,设置流水号
$request->setOutId("yourOutId");
// 选填,上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
$request->setSmsUpExtendCode("1234567");
// 发起访问请求
$acsResponse = static::getAcsClient()->getAcsResponse($request);
// 对象数组转成数组
$arr = object_to_array($acsResponse);
// 返回发送状态数组
return $arr;
}
~~~
- 模版
- 前言
- 项目架构
- 项目规范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意规范
- 开发版本管理
- 开发流程
- 系统配置
- 阿里云服务器配置
- 计划任务配置说明
- 开发示例
- Page分页
- Search_param搜索结果赋值
- Add新增
- Edit编辑
- Ajax表单验证
- Ajax二级联动
- Excel 导出数据首位不去0的方法
- POS总部控制
- 下载CSV格式的模板
- 订单唯一码表和订单SKU表实收金额生成
- 快捷日期选择
- JS函数
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表单验证插件
- Address省市区插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多选框插件
- Toastr消息提示插件
- PalyAudit扫描声音提示插件
- WebUploader多图片上传插件
- Ueditor富文本编辑器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select门店多选搜索框
- 品牌A-Z排序多选brand_mc.html
- 供应商代码A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 问题反馈