Php/func var is integer
来自菜鸟教程
PHP is_integer()函数
例
检查变量是否为整数类型:
<?php $a = 32; echo "a is " . is_integer($a) . "<br>"; $b = 0; echo "b is " . is_integer($b) . "<br>"; $c = 32.5; echo "c is " . is_integer($c) . "<br>"; $d = "32"; echo "d is " . is_integer($d) . "<br>"; $e = true; echo "e is " . is_integer($e) . "<br>"; $f = "null"; echo "f is " . is_integer($f) . "<br>"; ?>
定义和用法
is_integer()函数检查变量是否为整数类型。
此函数是 is_int()
.
句法
is_integer(variable);
参数值
参数 | 描述 |
---|---|
variable | 需要。指定要检查的变量 |
技术细节
返回值: | 如果为真
variable 是整数,否则为FALSE |
返回类型: | 布尔型 |
PHP版本: | 4.0+ |