rabin 59917cf88e edit | hace 1 año | |
---|---|---|
api | hace 6 años | |
config | hace 6 años | |
database | hace 2 años | |
lib | hace 1 año | |
sdk | hace 6 años | |
src | hace 6 años | |
LICENSE | hace 6 años | |
README.md | hace 6 años | |
index.php | hace 2 años |
# 短信模板标识
$skin = 'k1';
# 手机号
$mobile = Dever::input('mobile');
# 一些参数
$param = array
(
'content' => '自定义的内容',
);
$send['skin'] = $skin;
$send['mobile'] = $mobile;
$send['param'] = $param;
return Dever::load('sms/api.send, $send);
# 短信模板标识
$skin = 'k1';
# 手机号
$mobile = Dever::input('mobile');
$send['skin'] = $skin;
$send['mobile'] = $mobile;
return Dever::load('sms/api.sendCode', $send);