PHP Velho Oeste 2024

cos

(PHP 4, PHP 5, PHP 7, PHP 8)

cosCosine

Açıklama

cos(float $num): float

cos() returns the cosine of the num parameter. The num parameter is in radians.

Bağımsız Değişkenler

num

An angle in radians

Dönen Değerler

The cosine of num

Örnekler

Örnek 1 cos() example

<?php

echo cos(M_PI); // -1

?>

Ayrıca Bakınız

add a note add a note

User Contributed Notes 2 notes

up
-1
felipensp at gmail dot com
18 years ago
Convert degree to radianus, radianus to cos.

<?php

   
// Degree
   
$degree = 360;

   
// Convertion
   
print cos(deg2rad($degree));

?>
up
-89
shrinivasmani at gmail dot com
10 years ago
Convert degree to radianus

<?php

   
// Degree
   
$degree = 360;

   
// Convertion
   
print cos(deg2rad($degree));

?>
To Top