View Single Post
  #19 (permalink)  
Old 04-17-2008, 07:04 AM
saravanan saravanan is offline
D-Web Sr.Programmer
 
Join Date: Jul 2007
Posts: 181
saravanan is on a distinguished road
Default 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
Reply With Quote