完毕
没有机会在控制器操作中使用 $this->form_validation->run() 两次吗?CodeIgniter 似乎只验证第一条规则。我想使用 $this->form_validation->run() 两次,因为我需要第二个验证规则的验证值;)。
$this->form_validation->set_rules(...);
if($this->form_validation->run() === true)
{
$value = $this->..._model->get( ...); //use of validated value
$this->form_validation->set_rules(...); //use of $value
if($this->form_validation->run() === true)
{
//...
}
}