Source Code:
(back to article)
<?php $number = 10; // Check if the number is a finite number using the is_finite() function if (is_finite($number)) { echo "The number is a finite number"; } else { echo "The number is not a finite number"; } ?>
Result:
Report an issue