acos

(PHP 4, PHP 5, PHP 7)

acosArc cosine

Descrierea

acos ( float $num ) : float

Returns the arc cosine of num in radians. acos() is the inverse function of cos(), which means that a==cos(acos(a)) for every value of a that is within acos()' range.

Parametri

num

The argument to process

Valorile întoarse

The arc cosine of num in radians.

A se vedea și

add a note add a note

User Contributed Notes 1 note

up
-3
rahmatjon at gmail dot com
3 years ago
Hello!
There is no any example for acos() function. Please put this one below the acos() function's description.
Thank you!

Example:
<?php
    $arg
=0.5;
   
$val=acos($arg);
    echo
"acos(" . $arg . ") = " . $val . " radians.<br/>";
    echo
"Pi value = " . pi() . "<br/>";   
    echo
"acos(" . $arg . ") = " . $val/pi()*180 . " degrees<br/>";
?>
To Top