使用原始表单验证数组进行表单验证时的Codeigniter动态字段

时间:2016-05-04 19:02:18

标签: php arrays forms codeigniter validation

我在form_validation.php中设置了验证表单的数组。

但是,我有一些动态字段可能(或可能不)插入此数组。

所以我使用下面的代码,我想知道这是否正确

if($this->form_validation->run('agenda_de_contatos')){
    if($this->input->post('contato[]')!=""){
        $this->form_validation->set_rules($this->input->post('contato[]'), 'USC_CONTATO', 'trim|xss_clean');
        $this->form_validation->set_rules($this->input->post('contato_tipo[]'), 'USC_TIPO', 'trim|xss_clean');
    }

    if($this->form_validation->run()){...}

或者,如果我能以某种方式将itens添加到原始数组然后运行表单验证?

感谢的,

0 个答案:

没有答案