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 是整型,则返回 TRUE,否则返回 FALSE |
---|---|
返回类型 | 布尔型 |
PHP 版本 | 4.0+ |
❮ PHP 变量处理参考