I have the following function:
function valida_valor2($str)
{
$count = strlen($str);
if (($count > 19) OR (!is_numeric($str))) {
return "INVALIDO";
}else {
return $str;
}
}
When I call it in my code it returns INVALIDO
in the following call: Since the variables $valor_iem9... = 0;
if ((valida_valor2($valor_iem9_f_a) == 'INVALIDO') || (valida_valor2($valor_iem9_f_b) == 'INVALIDO') || (valida_valor2($valor_iem9_f_c) == 'INVALIDO') || (valida_valor2($valor_iem9_f_d) == 'INVALIDO') || (valida_valor2($valor_iem9_f_e) == 'INVALIDO')) {
echo "Campo IEM9 Pessoa Física inválido";
exit;
}
Any light?