aragorn-yang / aliyun-sms-php
阿里云短信服务
V20170525.0.1
2018-09-11 13:17 UTC
Requires
- php: >=5.5
- ext-json: *
- aragorn-yang/aliyun-dysms-php-sdk: =V20170525
- illuminate/support: 5.*
This package is auto-updated.
Last update: 2025-03-18 00:39:37 UTC
README
安装
composer require aragorn-yang/aliyun-sms-php
使用方法
基于 Laravel 框架
php artisan vendor:publish --provider="AragornYang\AliyunSms\ServiceProvider"
根据新增的aliyun-sms.php
文件,在 .env
文件中添加环境变量:
ALIYUN_SMS_ACCESS_KEY_ID=your_access_key_id
ALIYUN_SMS_ACCESS_KEY_SECRET=your_access_key_secret
$aliSms = new AliyunSms(); $response = $aliSms->sendSms('phone_number', 'sign_name', 'template_code', ['name'=> 'value in your template']); $response = $aliSms->querySendDetails('phone_number', '20180911', 10, 1);