1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <?php
| /*
| * 验证分组
| */
| return [
| 'loginvalidate' => [
| 'user_name.require' => 'Please fill in your account number',
| 'user_name.unique' => 'Account already exists',
| 'pwd.regexo' => 'The password must be between 6 and 18 digits',
| 'pwd.regext' => 'The password must contain numbers',
| 'pwd.regexth' => 'The password must contain letters',
| 'real_name.require' => 'Please fill in the name of the administrator',
| ],
| ];
|
|