PHP code example of namesfang / aliyun-sms
1. Go to this page and download the library: Download namesfang/aliyun-sms library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namesfang / aliyun-sms example snippets
use Namesfang\Aliyun\Sms\Log\Logger;
use Namesfang\Aliyun\Sms\Bundle\Send;
use Namesfang\Aliyun\Sms\Bundle\SendOption;
// +-----------------------------------------------------------
// | 第1种 配置参数方式
// | 直接在实例化时传入一个关联数组(非接口参数会自动过滤)
// | 每个 key 对应接口中的参数
// | 当值为数组时自动转义为json字符串
// +-----------------------------------------------------------
$option = new SendOption('AccessKeySecret', [
'AsscessKeyId'=> 'AsscessKeyId',
'SignName'=> '签名',
'PhoneNumbers'=> '15212341234',
'TemplateCode'=> 'SMS_2050000388',
'TemplateParam'=> '{"code":"232322"}',
]);
// +-----------------------------------------------------------
// | 第2种 配置参数方式
// | 调用相应的设置函数分别设置
// | 当值为数组时自动转义为json字符串
// +-----------------------------------------------------------
$option = new SendOption('AccessKeySecret');
$option->setAsscessKeyId('AsscessKeyId');
$option->setSignName('签名');
$option->setPhoneNumbers('15212341234');
$option->setTemplateCode('SMS_2050000388');
$option->setTemplateParam([
'code'=> '123456',
]);
// 也可以自行封装日志实现 LoggerInterface 即可
$logger = new Logger(LOG_PATH, true);
// 实例化发送类
$send = new Send($option, $logger);
// 发送
$res = $send->request();
// 判断请求是否异常
if($res->error) {
$logger->print($res->error, true);
}
// 打印接口返回的原始数据
// $logger->print($res->original, true);
// 打印接口返回状态
$logger->print($res->Code, true);
// 打印接口返回信息
$logger->print($res->result, true);
use Namesfang\Aliyun\Sms\Log\Logger;
use Namesfang\Aliyun\Sms\Bundle\SendBatch;
use Namesfang\Aliyun\Sms\Bundle\SendBatchOption;
// +-----------------------------------------------------------
// | 第1种 配置参数方式
// | 直接在实例化时传入一个关联数组(非接口参数会自动过滤)
// | 每个 key 对应接口中的参数
// | 当值为数组时自动转义为json字符串
// +-----------------------------------------------------------
$option = new SendBatchOption('<AccessKeySecret>', [
'AsscessKeyId'=> 'AsscessKeyId',
'PhoneNumberJson'=> '["15212341234", "15312341234"]',
'SignNameJson'=> '["签名一", "签名二"]',
'TemplateCode'=> 'SMS_22222222',
'TemplateParamJson'=> '[["param1"=> "123456"], ["param1"=> "123121"]]',
]);
// +-----------------------------------------------------------
// | 第2种 配置参数方式
// | 调用相应的设置函数分别设置
// | 当值为数组时自动转义为json字符串
// +-----------------------------------------------------------
$option = new SendBatchOption('<AccessKeySecret>');
$option->setAsscessKeyId('AsscessKeyId');
$option->setPhoneNumberJson(['15212341234', '15312341234']);
$option->setSignNameJson(['签名一', '签名一']);
$option->setTemplateCode('SMS_22222222');
$option->setTemplateParamJson([
['code'=> '123456'],
['code'=> '098781'],
]);
// 也可以自行封装日志
// 实现 LoggerInterface
$logger = new Logger(LOG_PATH, true);
$send = new SendBatch($option, $logger);
// 发送
$res = $send->request();
// 判断请求是否异常
if($res->error) {
$logger->print($res->error, true);
}
// 打印接口返回的原始数据
// $logger->print($res->original, true);
// 打印接口返回状态 使用 __get 实现从 result中获取
$logger->print($res->Code, true);
// 打印接口返回信息
$logger->print($res->result, true);