Package Data | |
---|---|
Maintainer Username: | xezw211 |
Maintainer Contact: | xezw211@126.com (hsky) |
Package Create Date: | 2016-09-15 |
Package Last Update: | 2017-06-22 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-25 15:03:27 |
Package Statistics | |
---|---|
Total Downloads: | 132 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
laravel5.2 for 1xinxi(第翼信息)
##安装
'providers' => [
...
Hsky\XinXi\XinXiServiceProvider::class
]
'aliases' => [
'Xinxi' => Hsky\XinXi\Facades\XinXiFacade::class,
]
使用
/**
* 支持多手机号发送
* @param $verify string 验证码
* @param $mobile string|array
* @param $sendTime datetime 发送时间
* @param $extno int 扩展码
*/
Xinxi::sendNormalInfo($verify, $mobile, $sendTime = '', $extno = '');
eg: Xinxi::sendNormalInfo('1234', '13112345678', '2016-9-28 5:24:24', '')
- 发送自定义短信[不需要短信模板]
/**
* 支持多手机号发送
* @param $content string 验证码
* @param $mobile string|array
* @param $sendTime datetime 发送时间
* @param $extno int 扩展码
*/
Xinxi::sendCustomInfo($content, $mobile, $sendTime = '', $extno = '');
eg: Xinxi::sendCustomInfo('自定义发送内容', '13112345678', '2016-9-28 5:24:24', '')