marlon / yuntongxun
There is no license information available for the latest version (0.1.1) of this package.
laravel sms send
0.1.1
2015-01-04 17:48 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-01-14 03:54:44 UTC
README
一个依赖于云通讯的laravel短信扩展包
使用方法
- 在composer中引入"marlon/yuntongxun": "0.1.1"
- 在laravel的
app/config/app.php
中添加以下内容 - providers数组中添加
'Marlon\Yuntongxun\YuntongxunServiceProvider'
- aliases数组中添加
'Sms' => 'Marlon\Yuntongxun\Yuntongxun'
- 根据情况执行
composer install
命令或者composer update
命令 - 在laravel根目录执行
php artisan config:publish marlon/yuntongxun
- 在
app/config/package/yuntongxun/config/config.php
设置你的云通讯相关信息
示例代码
<?php $result = Sms::send($mobile, $info, $id); /* * $mobile 为发送的手机号,为字符串,多个手机号用逗号分隔 * $info 为发送的验证码以及有效时间,为数组 * $id 为要发送的模板id * Sms::send会有返回值,为数组形式 * return Array( * 'to' => '18635634441', 发送的手机号 * 'status' => '0' 状态码,状态码为0的情况下为发送成功 * ) */
NOTICE
恩. 很久没有更新,今天正式说下,停止更新了. 主要原因还是因为这个东西只针对一个短信服务商. 刚刚自己又测了下,目前还是可以用的.