Codeigniter 2.0.2 表单验证 set_rules 自定义错误消息不起作用

Codeigniter 2.0.2 form validation set_rules custom error message not working

我正在尝试为 codeigniter 表单验证添加自定义错误消息。

$this->load->library('form_validation');
$this->form_validation->set_rules('month', 'Month', 'trim|required', array('required' => 'You need to supply period starting month'));

但不幸的是我仍然得到

The Month field is required.

错误信息。

我的 ci 版本是 2.0.2

在CI2中,您需要像下面这样设置自定义错误信息:

$this->form_validation->set_message('rule', 'Error Message');

根据您的要求,这可能有效,

$this->form_validation->set_rules('month', 'period starting month', 'trim|required');

$this->form_validation->set_message('required', 'You need to supply %s');

请参阅Docs

set_rules 未在您使用的 版本 中设置验证消息