axguowen / ctyun-sms
Ctyun php sdk sms package
v1.0.0
2024-02-19 01:38 UTC
Requires
- php: >=7.2.5
- axguowen/ctyun-common: ^1.0
This package is auto-updated.
Last update: 2024-12-19 03:25:45 UTC
README
PHP SDK包要求运行环境至少为PHP 7.2.5 版本(暂不支持PHP 8及以上版本)。
安装
composer require axguowen/ctyun-sms
简单使用
use axguowen\ctyun\common\Auth; use axguowen\ctyun\services\sms\SmsClient; // 实例化授权类 $ctyunAuth = new Auth('AccessKey', 'SecurityKey'); $smsClient = new SmsClient($ctyunAuth); // 发送短信 $smsClient->sendSms($phoneNumber, $signName, $templateCode, $templateParam);