通常,我可以在回调函数中使用它:
$this->form_validation->set_message("_custom", "My custom message.");
但是这将在回调函数内部仅 ,之前设置如下:
$this->form_validation->set_rules('something', 'Something', 'trim|required|xss_clean|callback_custom');
我的问题是 - 如何使用$this->form_validation->set_message
来处理字段名称,就像处理回调函数一样?
所以我可以使用这样的东西:$this->form_validation->set_message('field_name', 'custom message');
没有任何回调。
这可能吗?
答案 0 :(得分:3)
$this->form_validation->set_rules('myfield', 'My Field Name', 'trim|required|callback_name_function');
public function name_function()
{
$this->form_validation->set_message('name_function', 'Hello World !');
return false;
}
答案 1 :(得分:0)