共计 1359 个字符,预计需要花费 4 分钟才能阅读完成。
介绍
本我的项目集成了华为云短信发送业务,反对 ThinkPHP5.0、ThinkPHP5.1 和 ThinkPHP6.0,由宁波晟嘉网络科技有限公司保护。
装置教程
应用 composer require singka/singka-hwsms
命令行装置即可。
应用示例(基于 ThinkPHP6.0)
<?php
// +----------------------------------------------------------------------
// | 胜家云 [SingKa Cloud]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.singka.net All rights reserved.
// +----------------------------------------------------------------------
// | 宁波晟嘉网络科技有限公司
// +----------------------------------------------------------------------
// | Author: ShyComet <shycomet@qq.com>
// +----------------------------------------------------------------------
namespace app\home\controller;
use SingKa\HwSms\HwSms;
class Index
{
/**
* 短信发送示例
*
* @url 华为云短信 APP 接入地址 + 接口拜访 URI
* @appKey 华为云短信 appKey
* @appSecret 华为云短信 appSecret
* @sender 国内短信签名通道号或国内 / 港澳台短信通道号
* @signature 华为云短信签名
* @statusCallback 短信发送状态返回接管地址,能够为空
*/
public function smsDemo()
{$config['url'] = 'https://rtcsms.cn-north-1.myhuaweicloud.com:10743';
$config['appKey'] = 'PkT889B*************wM0GAi';
$config['appSecret'] = 'U58fd****************0o4N';
$config['sender'] = 'csms12345678';
$config['signature'] = '短信签名';
$config['statusCallback'] = '短信发送状态返回接管地址,能够为空';
$sms = new HwSms($config);
$result = $sms->send('模板 ID', '手机号码(多个号码能够用英文逗号隔开)', '短信变量数组');
if ($result['code'] == '000000') {echo '发送胜利';} else {echo $result['msg'];
}
}
}
其余阐明
相干资料请查阅:
华为云短信介绍、SDK 简介、API 概览
更多内容请拜访作者集体网站 尘墨成
正文完