Using PHP is_int() Function to Check Integer Variables
This article explains PHP's is_int() function, its syntax, return values, and provides two practical code examples demonstrating how to determine whether variables are integers, illustrating usage with integers, floats, strings, and boolean values.
PHP is a widely used scripting language for web development that provides many built‑in functions for handling various data types. One particularly useful function is is_int() , which checks whether a variable is an integer, helping developers quickly determine a variable's type for appropriate processing.
The syntax of is_int() is:
bool is_int ( mixed
$var
)This function accepts a single argument $var , which can be of any type (integer, float, string, etc.). It returns a boolean: true if the argument is an integer, otherwise false .
Below are two concrete code examples to illustrate the usage of is_int() :
Example 1:
<?php
$num1 = 10; // integer
$num2 = 10.5; // float
$str = "10"; // string
var_dump(is_int($num1)); // outputs: bool(true)
var_dump(is_int($num2)); // outputs: bool(false)
var_dump(is_int($str)); // outputs: bool(false)
?>In this example, three variables are defined: $num1 (integer), $num2 (float), and $str (string). Using var_dump() to display the result of is_int() shows true for the integer and false for the float and string.
Example 2:
<?php
$var1 = 123;
$var2 = "abc";
$var3 = true;
if (is_int($var1)) {
echo "Variable 1 is an integer";
} else {
echo "Variable 1 is not an integer";
}
if (is_int($var2)) {
echo "Variable 2 is an integer";
} else {
echo "Variable 2 is not an integer";
}
if (is_int($var3)) {
echo "Variable 3 is an integer";
} else {
echo "Variable 3 is not an integer";
}
?>This example defines three variables of different types and uses if statements combined with is_int() to output messages indicating whether each variable is an integer.
In summary, the is_int() function is a valuable PHP utility for quickly checking if a variable is an integer, enabling developers to handle different data types appropriately in their applications.
php中文网 Courses
php中文网's platform for the latest courses and technical articles, helping PHP learners advance quickly.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.