Re: Mathematical functions in PHP <?php
echo is_nan(200) . "<br />";
echo is_nan(acos(1.01));
?>
The is_nan() function returns true if the specified value is "not a number", otherwise it returns nothing.
answer for above code
1.nothing
2.true ,its means it not a number |