检查变量是数字还是数字字符串:
<?php
$a = 32;
echo "a is " . is_numeric($a) . "<br>";
$b = 0;
echo "b is " . is_numeric($b) . "<br>";
$c = 32.5;
echo "c is " . is_numeric($c) . "<br>";
$d = "32";
echo "d is " . is_numeric($d) . "<br>";
$e = true;
echo "e is " . is_numeric($e) . "<br>";
$f = null;
echo "f is " . is_numeric($f) . "<br>";
?>
亲自试一试 »
is_numeric() 函数检查变量是数字还是数字字符串。
如果变量是数字或数字字符串,则此函数返回 true (1),否则返回 false/无。
is_numeric(
variable);
Parameter | Description |
---|---|
variable | Required. Specifies the variable to check |
返回值: | 如果为真多变的是数字或数字字符串,否则为 FALSE |
---|---|
返回类型: | 布尔值 |
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!