Translating CodeIgniter's form validation error messages

前端 未结 2 1657
猫巷女王i
猫巷女王i 2021-02-02 03:42

Is there anyway to translate CodeIgniter\'s form validation error messages without touching to system files?

2条回答
  •  时光取名叫无心
    2021-02-02 04:40

    If you need to set a custom error message for a particular field on some particular rule, use the set_rules() method:

        $this->form_validation->set_rules('field_name', 'Field Label', 'rule1|rule2|rule3',
            array('rule2' => 'Error Message on rule2 for this field_name')
    );
    

    This will solve your all fields problem independently. :)

提交回复
热议问题