PHP tanh( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The tanh() function is a builtin function in PHP and is used to find the hyperbolic tangent of an angle passed to it as parameter. The hyperbolic tangent of any argument arg is defined as, sinh(arg) / cosh(arg) Where, sinh() is the hyperbolic sine function and cosh() is the hyperbolic cosine function. Syntax: float tanh($value) Parameters: This function accepts a single parameter $value. It is the number whose hyperbolic tangent 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 hyperbolic tangent value of a number passed to it as argument. Examples: Input : tanh(0.50) Output : 0.46211715726001 Input : tanh(-0.50) Output : -0.46211715726001 Input : tanh(5) Output : 0.9999092042626 Input : tanh(M_PI_4) Output : 0.65579420263267 Below programs, taking different values of $value are used to illustrate the tanh() function in PHP: Passing 0.50 as a parameter: PHP <?php echo (tanh(0.50)); ?> Output: 0.46211715726001 Passing -0.50 as a parameter: PHP <?php echo (tanh(-0.50)); ?> Output: -0.46211715726001 Passing 5 as a parameter: PHP <?php echo (tanh(5)); ?> Output: 0.9999092042626 When (M_PI_4) is passed as a parameter, M_PI is a constant in PHP whose value is 0.78539816339744830962 : PHP <?php echo (tanh(M_PI_4)); ?> Output: 0.65579420263267 Reference: https://www.php.net/manual/en/function.tanh.php Comment S Shubrodeep Banerjee Follow 0 Improve S Shubrodeep Banerjee Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-math 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