PHP/Math/tan — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 13:37, 26 мая 2010

float tan ( float num ) calculates the tangent value of the number

   <source lang="html4strict">

<?

   $tan1 = tan(10);
   $tan2 = tan(deg2rad(80));

?>

 </source>