PHP acosh( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report In mathematics, the inverse hyperbolic functions are the inverse functions of the hyperbolic functions. For a given value of a hyperbolic function, the corresponding inverse hyperbolic function provides the corresponding hyperbolic angle. PHP provides us with builtin functions for inverse hyperbolic calculations. The acosh() function in PHP is used to find the inverse hyperbolic cosine of a number passed to it as argument. Syntax: float acosh($value) Parameters: This function accepts a single parameter $value. It is the number whose inverse hyperbolic 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 inverse hyperbolic cosine value of a number passed to it as argument. Examples: Input : acosh(7) Output : 2.6339157938496 Input : acosh(56) Output : 4.7184191423729 Input : acosh(2.45) Output : 1.5447131178707 Below programs, taking different values of $value are used to illustrate the acosh() function in PHP: Passing 7 as a parameter: PHP <?php echo (acosh(7)); ?> Output:2.6339157938496Passing 56 as a parameter: PHP <?php echo (acosh(56)); ?> Output:4.7184191423729Passing 2.45 as a parameter: PHP <?php echo (acosh(2.45)); ?> Output:1.5447131178707 Reference: https://www.php.net/manual/en/function.acosh.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