PHP acos( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report 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: PHP <?php echo (acos(0)); ?> Output: 1.5707963267949 Passing 1 as a parameter: PHP <?php echo (acos(1)); ?> Output: 0 Passing -1 as a parameter: PHP <?php echo (acos(-1)); ?> Output: 3.1415926535898 Passing 2 as a parameter. As 2 is outside the range [-1,1], the function will return NaN : PHP <?php echo (acos(2)); ?> Output: NaN Reference: https://www.php.net/manual/en/function.acos.php Comment S Shubrodeep Banerjee Follow 0 Improve S Shubrodeep Banerjee Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Explore PHP Tutorial 8 min read BasicsPHP Syntax 4 min read PHP Variables 5 min read PHP | Functions 8 min read PHP Loops 4 min read ArrayPHP Arrays 5 min read PHP Associative Arrays 4 min read Multidimensional arrays in PHP 5 min read Sorting Arrays in PHP 4 min read OOPs & InterfacesPHP Classes 2 min read PHP | Constructors and Destructors 5 min read PHP Access Modifiers 4 min read Multiple Inheritance in PHP 4 min read MySQL DatabasePHP | MySQL Database Introduction 4 min read PHP Database connection 2 min read PHP | MySQL ( Creating Database ) 3 min read PHP | MySQL ( Creating Table ) 3 min read PHP AdvancePHP Superglobals 6 min read PHP | Regular Expressions 12 min read PHP Form Handling 4 min read PHP File Handling 4 min read PHP | Uploading File 3 min read PHP Cookies 9 min read PHP | Sessions 7 min read Like