53 lines
2.1 KiB
PHP
53 lines
2.1 KiB
PHP
|
<?php
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
|||
|
// | 开源版本可自由商用,可去除界面版权logo
|
|||
|
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
|||
|
// | github下载:https://github.com/likeshop-github/likeadmin
|
|||
|
// | 访问官网:https://www.likeadmin.cn
|
|||
|
// | likeadmin团队 版权所有 拥有最终解释权
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | author: likeadminTeam
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
namespace app\api\validate;
|
|||
|
|
|||
|
|
|||
|
use app\common\model\user\User;
|
|||
|
use app\common\validate\BaseValidate;
|
|||
|
|
|||
|
/**
|
|||
|
* 注册验证器
|
|||
|
* Class RegisterValidate
|
|||
|
* @package app\api\validate
|
|||
|
*/
|
|||
|
class RegisterValidate extends BaseValidate
|
|||
|
{
|
|||
|
|
|||
|
protected $regex = [
|
|||
|
'register' => '^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]+$',
|
|||
|
'password' => '/^(?![0-9]+$)(?![a-z]+$)(?![A-Z]+$)(?!([^(0-9a-zA-Z)]|[\(\)])+$)([^(0-9a-zA-Z)]|[\(\)]|[a-z]|[A-Z]|[0-9]){6,20}$/'
|
|||
|
];
|
|||
|
|
|||
|
protected $rule = [
|
|||
|
'channel' => 'require',
|
|||
|
'account' => 'require|length:3,12|unique:' . User::class . '|regex:register',
|
|||
|
'password' => 'require|length:6,20|regex:password',
|
|||
|
'password_confirm' => 'require|confirm'
|
|||
|
];
|
|||
|
|
|||
|
protected $message = [
|
|||
|
'channel.require' => '注册来源参数缺失',
|
|||
|
'account.require' => '请输入账号',
|
|||
|
'account.regex' => '账号须为字母数字组合',
|
|||
|
'account.length' => '账号须为3-12位之间',
|
|||
|
'account.unique' => '账号已存在',
|
|||
|
'password.require' => '请输入密码',
|
|||
|
'password.length' => '密码须在6-25位之间',
|
|||
|
'password.regex' => '密码须为数字,字母或符号组合',
|
|||
|
'password_confirm.require' => '请确认密码',
|
|||
|
'password_confirm.confirm' => '两次输入的密码不一致'
|
|||
|
];
|
|||
|
|
|||
|
}
|