PHP/Math/sin

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

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

   <source lang="html4strict">

<?

   $sin1 = sin(10);
   $sin2 = sin(deg2rad(80));

?>

 </source>