我正在尝试为 codeigniter 表单验证添加自定义错误消息。
$this->load->library('form_validation');
$this->form_validation->set_rules('month', 'Month', 'trim|required', array('required' => 'You need to supply period starting month'));
但不幸的是我仍然得到
月份字段是必需的。
错误信息。
我的 ci 版本是2.0.2