We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
is_finite - Whether a value is a legal finite number
bool is_finite( float $x )
is_finite() returns true if x is a finite number and false otherwise.
x - The number to process. It can be a scalar or an array.
true or false depending on whether x is a finite number. If x is an array, the return value will also be an array.
1.0 and above.