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.
17 lines
432 B
17 lines
432 B
<?php
|
|
namespace app\admin\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class Admin extends Validate
|
|
{
|
|
protected $rule = [
|
|
'username' => 'require|length:2,25',
|
|
// 'email' =>'email'
|
|
];
|
|
protected $message = [
|
|
'username.require' => '用户名不能为空',
|
|
'username.length' => '用户名在2到25个字符之间',
|
|
// 'email.email' => '邮箱格式不正确',
|
|
];
|
|
}
|