dounabi6295 2016-12-07 21:52
浏览 50
已采纳

CodeIgniter表单验证不适用于url

I used form_validation for validate URL by using this code:

 $this->form_validation->set_rules("edtQuestionURL", "Site URL", "trim|required|url");

But every time I run my code, It returns false.

What is my mistake? I made some change in system/Form_validation.php file (I got them from StackOverflow) but it does not work. Please guide me.

  • 写回答

1条回答 默认 最新

  • dos8410 2016-12-09 13:44
    关注

    Maybe you can try like this

    $this->form_validation->set_rules("edtQuestionURL", "Site URL", "trim|required|valid_url");
    

    or this

    $this->form_validation->set_rules("edtQuestionURL", "Site URL", "trim|required|prep_url");
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?