PHP asinh( ) 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 asinh() function in PHP is used to find the inverse hyperbolic sine of a number passed to it as argument.Syntax: float asinh($value) Parameters: This function accepts a single parameter $value. It is the number whose inverse hyperbolic sine 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 sine value of a number passed to it as argument.Examples: Input : asinh(7) Output : 2.6441207610586 Input : asinh(56) Output : 4.7185785811518 Input : asinh(2.45) Output : 1.6284998192842 Below programs, taking different values of $value are used to illustrate the asinh() function in PHP: Passing 7 as a parameter: PHP <?php echo (asinh(7)); ?> Output: 2.6441207610586Passing 56 as a parameter: PHP <?php echo (asinh(56)); ?> Output: 4.7185785811518Passing 2.45 as a parameter: PHP <?php echo (asinh(2.45)); ?> Output: 1.6284998192842 Reference: http://php.net/manual/en/function.asinh.php Comment More infoAdvertise with us Next Article PHP asinh( ) Function S Shubrodeep Banerjee Follow Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Practice Tags : Misc Similar Reads PHP asin( ) 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 asin() function. The asin() function in PHP is used to find the arc sine of a number in radians. We already 2 min read PHP acosh( ) 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 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 end() Function The end() function is an inbuilt function in PHP and is used to find the last element of the given array. The end() function changes the internal pointer of an array to point to the last element and returns the value of the last element.Syntax:end($array)Parameters:This function accepts a single par 2 min read Like