anerg2046 / alidayu
alidayu sms library
Installs: 3 145
Dependents: 0
Suggesters: 0
Security: 0
Stars: 20
Watchers: 3
Forks: 17
Open Issues: 0
Requires
- php: >=5.6.0
- anerg2046/helper: ^1.0
This package is auto-updated.
Last update: 2024-11-12 20:27:17 UTC
README
安装方法
composer require anerg2046/alidayu
类库使用的命名空间为
\\anerg\\Alidayu
典型用法
以ThinkPHP5为例
<?php namespace app\common\service; use anerg\Alidayu\SmsGateWay; class Sms { public function send_code($mobile) { $code = mt_rand(1000, 9999); $AliSMS = new SmsGateWay(); $AliSMS->send($mobile, ['code'=>$code], 'SMS_10210103'); } }