2017-02-11 7 views
1

私はクレジットカード番号を検証しようとしていますが、これまでの結果を得ることができました。ただし、失敗するたびに、フォームの検証メッセージが表示されません。私はコールバックの設定を含むいくつかの方法を試してきました。私は何が欠けているのか分からない。誰かが見て、私を助けてくれることを願っています。CodeIgniter関数から検証メッセージを設定する方法

コントローラ

public function next(){ 
     $this->form_validation->set_error_delimiters('<p class="error">', '</p>'); 
     $this->form_validation->set_rules('inputcardtype','Select Card Type','required|callback_check_default'); 
     $this->form_validation->set_message('check_default', 'Please select the month of expiration'); 
     $this->form_validation->set_rules('inputcardnumber', 'Card Number', 'trim|required|xss_clean'); 
     $this->form_validation->set_rules('inputexpirationdatemonth','Select Month','required|callback_check_default'); 
     $this->form_validation->set_message('check_default', 'Please select the month of expiration'); 
     $this->form_validation->set_rules('inputexpirationdateyear','Select Year','required|callback_check_default'); 
     $this->form_validation->set_message('check_default', 'Please select the year of expiration'); 
     $this->form_validation->set_rules('inputnameoncard', 'Name on Card', 'trim|required|xss_clean'); 

     $inputcardnumber = $this->input->post('inputcardnumber'); 
     $inputcardtype = $this->input->post('inputcardtype'); 
     // var_dump($this->cardnumber_validation($inputcardnumber,$inputcardtype)); 
     if($this->form_validation->run()==false||$this->cardnumber_validation($inputcardnumber,$inputcardtype)==FALSE){ 
      $this->index(); 
     }else{ 

     } 

    } 

    function cardnumber_validation($string = NULL,$cardtype=NULL) { 
     $this->load->helper('creditcardvalidation'); 
     if(checkCreditCard ($string, $cardtype, $ccerror, $ccerrortext)) { 
      return TRUE; 
     } 
     else{ 
      $this->form_validation->set_message("inputcardnumber", 'Invalid Card Number'); 
      return FALSE; 
     } 
    } 

    function check_default($post_string){ 
     return $post_string == '0' ? FALSE : TRUE; 
    } 
+0

に2つの変数を渡すためにこれを行うことができますが分かったが、本当にあなたは、コントローラのメソッドを使用する方法を理解することはできません、あなたは、インデックスを含めることができますメソッドと関連するビュー – jtheman

+0

それは大丈夫です。私はそれを解決することができた!助けてくれてありがとう! – JianYA

+1

あなた自身の答えを投稿してください。 – Faegy

答えて

0

は、だから私はあなたがコールバック

$this->form_validation->set_rules('inputcardnumber', 'Card Number', 'trim|required|xss_clean|callback_cardnumber_validation['.$this->input->post('inputcardtype').']'); 
関連する問題