(PHP 4, PHP 5, PHP 7)
cos — Cosine
$arg
) : float
cos() returns the cosine of the arg
parameter. The arg
parameter is in radians.
arg
An angle in radians
The cosine of arg
Example #1 cos() example
<?php
echo cos(M_PI); // -1
?>