Check whether a value is infinite or not:
<?php
echo is_infinite(2) . "<br>";
echo is_infinite(log(0)) . "<br>";
echo is_infinite(2000);
?>
Try it Yourself »
The is_infinite() function checks whether a value is infinite or not.
This function returns true (1) if the specified value is an infinite number, otherwise it returns false/nothing.
The value is infinite if it is outside the allowed range for a PHP float on this platform.
is_infinite(
value);
Parameter | Description |
---|---|
value | Required. Specifies the value to check |
Return Value: | TRUE if value is an infinite number, FALSE otherwise |
---|---|
Return Type: | Boolean |
PHP Version: | 4.2+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!