You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1011 B
33 lines
1011 B
<?php
|
|
/*----------------------------------------------------------------------
|
|
* 项目名称: CloudAdmin
|
|
* +----------------------------------------------------------------------
|
|
* 版权所有: 2014~2020 安徽云掌开发团队
|
|
* +----------------------------------------------------------------------
|
|
* 官方网站: [ http://www.yaoyz.com、http://www.ahyunzhang.com ]
|
|
* +----------------------------------------------------------------------
|
|
* Date: 2018/11/30 9:47
|
|
* +----------------------------------------------------------------------
|
|
* Des: 短信验证
|
|
+----------------------------------------------------------------------*/
|
|
|
|
namespace app\api\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class Sms extends Validate
|
|
{
|
|
|
|
protected $rule = [
|
|
'mobile' => 'require|length:11',
|
|
'code' => 'require|length:4',
|
|
];
|
|
|
|
protected $message = [
|
|
'mobile.require' => '40601',
|
|
'mobile.length' => '40601',
|
|
'code.require' => '40604',
|
|
'code.length' => '40604',
|
|
];
|
|
|
|
}
|