PHP/Math/sin

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

float sin ( float num ) calculates the sine value of the number provided as its only parameter

 
<?
    $sin1 = sin(10);
    $sin2 = sin(deg2rad(80));
?>