0

我需要为学生 ID 设置验证,并且 CI 原生库没有削减它,所以我扩展了它。然而,我在让它工作时遇到了问题,而且我不太清楚我在哪里搞砸了。这是我在 REGEX 的第一次破解,所以请放轻松。这是我的代码:

<?php

 if(!defined('BASEPATH')) exit('No direct script access allowed');

 class MY_Form_validation extends CI_Form_validation
 {

     public function is_valid_student_id($str)
     {
         if(strlen($str) > 9)
         {
             $this -> set_message('is_valid_student_id', 'A-Number can not be over 9 characters');
             return FALSE;
         }
         elseif(strlen($str) < 9)
         {
             $this -> set_message('is_valid_student_id', 'A-Number can not be under 9 characters');
             return FALSE;
         }
         elseif((($str[0]) !== 'a') && (($str[0]) !== 'A'))
         {
             $this -> set_message('is_valid_student_id', 'A-Number must begin with the letter "A"');
             return FALSE;
         }
         elseif(ctype_alpha($str[0]))
         {
             if(is_numeric(substr($str, 1, strlen($str) - 1)))
             {
                 return TRUE;
             }
             else
             {
                 $this -> set_message('is_valid_student_id', 'A-Number must have 8 digits 0 - 9');
                 return FALSE;
             }
         }
         else
         {
             $this -> set_message('is_valid_student_id', 'A-Number must begin with the letter "A"');
             return FALSE;
         }

     }

 }

然后使用验证我这样做:

if (!$this->input->post('student') == 'yes') {
    $this->form_validation->set_rules('anum', 'A Number', 'required|is_valid_student_id|exact_length[9]');
}

我一直在关注这些///教程,但我还是有点困惑。任何帮助都会很棒。谢谢

4

2 回答 2

2

如果您使用callback_语法,则调用的函数需要在控制器上。但是,如果您Form_Validation直接将其添加到库中,则不需要callback_. 尝试这个:

$this->form_validation->set_rules(
      'anum', 'A Number', 'required|is_anum|exact_length[9]');
于 2013-05-21T13:26:05.703 回答
0

我认为无需扩展库只需在控制器中创建一个回调方法并在其中添加上述代码...只需创建一个名为 is_anum 的方法并将您的代码放入其中

if (!$this->input->post('student') == 'yes') {
            $this->form_validation->set_rules('anum', 'A Number', 'required|callback_is_anum|exact_length[9]');
        }

function is_anum($str)
{
if (((substr($str, 0) !== 'a') || substr($str, 0) !== 'A') && (!preg_match("/[^0-9]/", $str) )) // If the first character is not (a or A) and does not contain numbers 0 - 9 
        { // Set a message and return FALSE so the run() fails
            $this->set_message('is_anum', 'Please enter a valid A-Number');
            return FALSE;
        } else 
        {
            return TRUE;
        }
    }

于 2013-05-21T13:28:44.810 回答