Run »
"; $b = 0; echo "b is " . is_int($b) . "
"; $c = 32.5; echo "c is " . is_int($c) . "
"; $d = "32"; echo "d is " . is_int($d) . "
"; $e = true; echo "e is " . is_int($e) . "
"; $f = "null"; echo "f is " . is_int($f) . "
"; ?>
a is 1
b is 1
c is
d is
e is
f is