|
表单验证规则
array(
'field' => 'password',
'label' => 'lang:password',
'rules' => 'required'
),
array(
'field' => 'passconf',
'label' => 'lang:passconf',
'rules' => 'required|matches[password]'
),
密码不匹配提示“字段 确认密码 与 lang:password 不一致.”
如何使用lang让他显示成 “字段 确认密码 与 密码 不一致. ” |
|