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

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

Текущая версия на 07:06, 26 мая 2010

float cos ( float num ) calculates the cosine value of the number provided as its only parameter. The parameter should be passed as radiansyou should use deg2rad( ) to convert degrees to radians.

 
<?
    $cos1 = cos(10);
    $cos2 = cos(deg2rad(80));
?>