<!DOCTYPE html>
<html>
<body>

<?php
echo is_finite(2) . "<br>";
echo is_finite(log(0)) . "<br>";
echo is_finite(2000);
?>


</body>
</html>