|
is_finiteChecks whether a float is finite Description
bool is_finite(float
$num )
Returns whether the given
A finite float is neither Parameters
Return Values
Examples
Example #1 is_finite example
The above example will output: float(1.2345) bool(true) float(NAN) bool(false) float(INF) bool(false) See Also
|