对codeigniter的float数字验证检查

时间:2012-12-29 04:32:31

标签: php codeigniter validation numbers

这里我是%的税收领域,但是当我的整数值为2.5,0.5而不是整数时,它会产生错误。 这是我的验证代码,任何输入浮点数的想法

function _set_rules()
{
  $this->form_validation>set_rules('pst','PST','trim|required|is_natural|numeric|
   max_length[4]|callback_max_pst');
  $this->form_validation->set_rules('gst','GST','trim|required|is_natural|numeric|
max_length[4]|callback_max_gst');
}
function max_pst()
 {
   if($this->input->post('pst')>100)
    {
      $this->form_validation->set_message('max_pst',' %s Value Should be less than or equals to 100');
return FALSE;
    }
   return TRUE;
  }
function max_gst()
  {
    if($this->input->post('gst')>100)
      {
    $this->form_validation->set_message('max_gst',' %s Value Should be less than or equals to 100');
    return FALSE;
    }

   return TRUE;
  }
</code>

3 个答案:

答案 0 :(得分:13)

从验证规则中删除is_natural,并将其替换为greater_than[0]less_than[100]

function _set_rules()
{
  $this->form_validation>set_rules('pst','PST','trim|required|
  greater_than[0]|less_than[100]|max_length[4]|callback_max_pst');
  $this->form_validation->set_rules('gst','GST','trim|required|
  greater_than[0]|less_than[100]|max_length[4]|callback_max_gst');
}

greater_than[0]将适用numeric

答案 1 :(得分:3)

你可以试试这个:

function _set_rules()
{
  $this->form_validation>set_rules('pst','PST','trim|required|
  numeric|max_length[4]|callback_max_pst');
  $this->form_validation->set_rules('gst','GST','trim|required|
  numeric|max_length[4]|callback_max_gst');
}

function max_pst($value) {
    $var = explode(".", $value);
    if (strpbrk($value, '-') && strlen($value) > 1) {
        $this->form_validation->set_message('max_pst', '%s accepts only 
        positive values');
        return false;
    }
    if ($var[1] > 99) {
        $this->form_validation->set_message('max_pst', 'Enter value in 
        proper format');
        return false;
    } else {
        return true;
    }
}

希望这段代码可以帮助你.... :)

答案 2 :(得分:2)

来自codeigniter文档:

  

is_natural如果表单元素包含除自然数之外的任何内容,则返回FALSE:0,1,2,3等。source

显然,像2.5,0.5这样的值不是自然数,因此它们将无法通过验证。您可以使用回调并在使用floatval() PHP函数解析值后返回值。

希望它有所帮助!