|
is_floatFinds whether the type of a variable is float Description
bool is_float
( mixed
$var
)Finds whether the type of the given variable is float.
Parameters
Return Values
Returns Examples
Example #1 is_float example
var_dump(is_float(27.25)); The above example will output: bool(true) bool(false) bool(false) bool(true) bool(true) bool(false) See Also
|