The is_integer
method checks if the type of variable is an integer.
is_integer(mixed $value): bool
value
: the variable to evaluate.This method returns true
if the passed value is an integer
type. Otherwise, it returns false
.
<?php$test = 10;printIsInteger($test);$test = 10000;printIsInteger($test);$test = 100.1;printIsInteger($test);$test = '10';printIsInteger($test);function printIsInteger($test){echo "The Value is: ";var_dump($test);echo "Is Integer: ";var_dump(is_integer($test));echo "---------\n\n";}?>
In the code above:
We have used the is_integer
method to check if a variable is an integer.
The is_integer
method returns true
for the value 10
and 10000
.
The is_integer
method returns false
for the values 100.1
and 10
because they are float
and string
types respectively.