PHP中Yii框架之表单验证规则
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
public $password2;//非数据库的字段,但是在view中需要用到
public $verify; //手机验证码
public $fjg; //忘记号码
/**
* 映射数据库表名
* @return string the associated database table name<br><br> * www.shouce.ren
*/
public function tableName()
{
return 'adm_user';
}
/**
* 验证规则
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(