Trigonometry is an important part of mathematics and PHP’s math functions provides us with some functions which are very useful for calculations involving trigonometry. One of such function is acos() function. The acos() function in PHP is used to find the arc cosine of a number in radians.
We already have discussed about PHP | cos() Function. The acos() function is the complementary function of cos().
The parameter passed in the acos() function should specify a number in the range -1 to 1.
Syntax:
float acos($value)
Parameters: This function accepts a single parameter $value. It is the number whose arc cosine value you want to find. The value of this parameter must be in radians.
Return Value: It returns a floating point number which is the arc cosine value of number passed to it as argument.
Examples:
Input : 0 Output : 1.5707963267949 Input : 1 Output : 0 Input : -1 Output : 3.1415926535898 Input : 2 Output : NaN
- Passing 0 as a parameter:
<?phpecho(acos(0));?>chevron_rightfilter_noneOutput:
1.5707963267949
- Passing 1 as a parameter:
<?phpecho(acos(1));?>chevron_rightfilter_noneOutput:
0
- Passing -1 as a parameter:
<?phpecho(acos(-1));?>chevron_rightfilter_noneOutput:
3.1415926535898
- Passing 2 as a parameter. As 2 is outside the range [-1,1], the function will return NaN :
<?phpecho(acos(2));?>chevron_rightfilter_noneOutput:
NaN
Reference:
http://php.net/manual/en/function.acos.php
Recommended Posts:
- p5.js | acos() function
- JavaScript Math acos( ) Method
- How to Check a Function is a Generator Function or not using JavaScript ?
- How to call a function that return another function in JavaScript ?
- How to get the function name inside a function in PHP ?
- How to get the function name from within that function using JavaScript ?
- D3.js | d3.hsl() Function
- CSS min() Function
- PHP | Ds\Set add() Function
- PHP | each() Function
- D3.js now() function
- PHP | min( ) Function
- D3.js | d3.map.set() Function
- p5.js | nfc() function
- p5.js | nfp() Function
- PHP | max( ) Function
- p5.js | nf() Function
- D3.js | d3.set.has() Function
- p5.js | nfs() Function
- PHP | key() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

