View Single Post
  #35 (permalink)  
Old 04-21-2008, 07:00 AM
sureshbabu sureshbabu is offline
D-Web Sr.Programmer
 
Join Date: Jul 2007
Location: India
Posts: 101
sureshbabu is on a distinguished road
Send a message via AIM to sureshbabu Send a message via MSN to sureshbabu Send a message via Yahoo to sureshbabu Send a message via Skype™ to sureshbabu
Default Re: Mathematical functions in PHP

hypot()
The hypot() function returns the length of the hypotenuse of a right-angle triangle.

Syntax
hypot(x,y)

Example
<?php
echo hypot(2,3) . "<br />";
echo hypot(3,6) . "<br />";
echo hypot(3,6) . "<br />";
echo hypot(1,3);
?>

The output of the code above will be:

3.60555127546
6.7082039325
6.7082039325
3.16227766017
__________________
Thanks
Regards
Sureshbabu Harikrishnan
+91 9884320017
Reply With Quote