如何检查在表单上的字段中输入的值是否为数字?

时间:2011-11-30 22:36:11

标签: php

如何检查在表单上的字段中输入的值是否为数字?

例如:

$values = array(1,20,10); 

4 个答案:

答案 0 :(得分:2)

答案 1 :(得分:2)

你可以使用功能: is_numeric() - 查找变量是数字还是数字字符串..

例如:

<?php
$tests = array(
    "42", 
    1337, 
    "1e4", 
    "not numeric", 
    array(), 
    9.1
);

foreach ($tests as $element) {
    if (is_numeric($element)) {
        echo "'{$element}' is numeric", PHP_EOL;
    } else {
        echo "'{$element}' is NOT numeric", PHP_EOL;
    }
}
?>

以上示例将输出:

'42' is numeric
'1337' is numeric
'1e4' is numeric
'not numeric' is NOT numeric
'Array' is NOT numeric
'9.1' is numeric

来源:http://php.net/manual/en/function.is-numeric.php

答案 2 :(得分:1)

您可以使用is_numeric()检查表单中的输入。

答案 3 :(得分:0)

如果您只想知道它是否为数字,那么PHP有一个名为is_numeric的函数,如果它是数字则返回true。

但是,如果您想知道某些内容是否为整数,请不要使用is_int。使用filter_var($variable, FILTER_VALIDATE_INT)

如果你想知道某些东西是浮点数(例如1.00123):filter_var($variable, FILTER_VALIDATE_FLOAT)