Download the PHP package ddsm2016/sv without Composer
On this page you can find all versions of the php package ddsm2016/sv. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor ddsm2016
Package sv
Short Description 短信验证码发送验证类
License MIT
Homepage https://github.com/ddsm2016/sv/wiki
Package sv
Short Description 短信验证码发送验证类
License MIT
Homepage https://github.com/ddsm2016/sv/wiki
Please rate this library. Is it a good library?
Informations about the package sv
短信验证码类
通过Composer
ddsm2016/sv
包可以获取该类库
依赖模块/类库
- 该类依赖ddsm2016/ddsm类库包,以提供短信发送服务
- 该类依赖特定结构的Eloquent模型,用于保存验证码相关状态信息
Eloquent模型表结构
序号 | 字段名 | 中文名 | 类型及长度 | 备注 |
---|---|---|---|---|
1 | id | ID | varchar(255) | 主键 |
2 | code | 验证码 | varchar(8) | 验证码 最多长度8位 |
3 | dayget | 当天已获取次数 | tinyint | 无符号 |
4 | verifyed | 此验证码已验证次数 | tinyint | 无符号 |
5 | created_at | 验证码创建时间 | datetime | - |
6 | updated_at | 验证码记录更新时间 | datetime | - |
说明
- ID用于标识某条特定的短信验证码记录
Laravel Migration字段定义
初始化配置项
初始化类实例
方法清单
- 发送短信验证码 send($phone)
- 短信验证码验证 verify($inputCode)
- 获取最后产生错误信息 error()
发送短信验证码
- 如果验证码发送失败,可通过
$sv->error()
获取错误信息sms
方法用于设定短信发送类实例content
方法用于订制验证码短信模板,%s表示验证码占位符
短信验证码验证
如果验证码验证失败,可通过$sv->error()获取错误信息
获取最后产生错误信息
All versions of sv with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.5.9
The package ddsm2016/sv contains the following files
Loading the files please wait ....