parent root
PHP: cos - Manual

cos

(PHP 4, PHP 5, PHP 7)

cosCosine

Description

cos ( float $arg ) : float

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

Parameters

arg

An angle in radians

Return Values

The cosine of arg

Examples

Example #1 cos() example

<?php

echo cos(M_PI); // -1

?>

See Also

add a noteadd a note

User Contributed Notes 2 notes

up
-2
felipensp at gmail dot com
13 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
5 years ago
Convert degree to radianus

<?php

   
// Degree
   
$degree = 360;

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

?>
To Top
parent root