Adding custom callback to Codeigniter Form Validation

前端 未结 3 1763
小鲜肉
小鲜肉 2020-12-09 06:47

I want to limit my registration to emails with @mywork.com I made the following in My_Form_validation.

public function email_check($email)
    {
        $fin         


        
3条回答
  •  生来不讨喜
    2020-12-09 07:14

    A correction to Jordan's answer, the language file that you need to edit should be located in

    system/language/english/form_validation_lang.php

    not application/.../form_validation_lang.php. If you create the new file under the application path with the same name, it will overwrite the original in the system path. Thus you will lose all the usage of the original filters.

提交回复
热议问题