PHP acosh( ) Function Last Updated : 22 Jun, 2023 Summarize Comments Improve Suggest changes Share 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 More infoAdvertise with us Next Article PHP Arrow Functions S Shubrodeep Banerjee Follow Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Practice Tags : Misc Similar Reads PHP cosh( ) Function The cosh() function is a builtin function in PHP and is used to find the hyperbolic sine of an angle. The hyperbolic cosine of any argument arg is defined as, (exp(arg) + exp(-arg))/2 Where, exp() is the exponential function and returns e raised to the power of argument passed to it. For example exp 2 min read PHP acos( ) Function 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 alrea 2 min read PHP asinh( ) Function 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 1 min read PHP atanh( ) Function 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 2 min read PHP Arrow Functions PHP arrow functions are a shorthand syntax for anonymous functions. It was introduced in PHP 7.4, which provides a shorter way to write anonymous functions. They allow you to create functions with fewer lines of code while maintaining functionality. They provide an easy-to-read syntax, particularly 5 min read PHP fpassthru( ) Function The fpassthru() function in PHP is an inbuilt function which is used to read data from a current position from a specified file until end of file and then write the result to the output buffer. The file which has to be read is sent as a parameter to the fpassthru() function and it returns the number 2 min read Like