public function index()
{
$this->form_validation->set_rules('title', '标题' , 'trim|required|min_length[4]|max_length[80|xss_clean|callback_f');
}
public function f()
{
if (...)
{
return TRUE;
}
$this->form_validation->set_message('f', 'message');
return FALSE;
}