is_float
PHP 4, PHP 5, PHP 7, PHP 8
is_float - Finds whether the type of a variable is float
Manual
is_float(
mixed$value ): bool
Finds whether the type of the given variable is float.
Note:
To test if a variable is a number or a numeric string (such as form input, which is always a string), you must use is_numeric.
Parameters
- value
-
The variable being evaluated.
Return Values
Returns true if value is a float, false otherwise.