PHP cosh( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report 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) = e^2. Syntax: float cosh($value) Parameters:This function accepts a single parameter $value. It is the number whose 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 hyperbolic cosine value of number passed to it as argument. Examples: Input : cosh(3) Output : 10.067661995778 Input : cosh(-3) Output : 10.067661995778 Input : cosh(2*M_PI) Output : 267.74676148375 Input : cosh(0) Output : 1 Below programs taking different values of $value are used to illustrate the cosh() function in PHP: Passing 3 as a parameter: PHP <?php echo (cosh(3)); ?> Output: 10.067661995778 Passing -3 as a parameter: PHP <?php echo (cosh(-3)); ?> Output: 10.067661995778 When (2*M_PI) is passed as a parameter, M_PI is a constant in PHP whose value is 3.1415926535898: PHP <?php echo (cosh(2*M_PI)); ?> Output: 267.74676148375 Passing 0 as a parameter: PHP <?php echo (cosh(0)); ?> Output: 1 Reference: http://php.net/manual/en/function.cosh.php Comment More infoAdvertise with us Next Article PHP cosh( ) Function S Shubrodeep Banerjee Follow Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Practice Tags : Misc Similar Reads 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 cos( ) 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. The cos()function in PHP is used to find the cosine of a number. The cos() function returns a float value between -1 and 1, which r 2 min read PHP each() Function The each() function is an inbuilt function in PHP and is used to get the current element key-value pair of the given array to which the internal pointer is currently pointing. After returning the key and value of the current element the internal pointer is incremented by one in the array. Note: You 2 min read PHP | each() Function The each() function is an inbuilt function in PHP which basically returns an array with four elements, two elements (1 and Value) for the element value, and two elements (0 and Key) for the element key and moves the cursor forward. Syntax: each(array) Parameters: Array: It specifies the array which 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 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 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 | Functions A function in PHP is a self-contained block of code that performs a specific task. It can accept inputs (parameters), execute a set of statements, and optionally return a value. PHP functions allow code reusability by encapsulating a block of code to perform specific tasks.Functions can accept param 8 min read PHP | fstat( ) Function The fstat() function in PHP is an inbuilt function which is used to return information about an open file. The file name is sent as a parameter to the fstat() function and it returns an array with the following elements : Numeric Associative Description 0 dev Device number 1 ino inode number* 2 mode 3 min read PHP fputs( ) Function The fputs() function in PHP is an inbuilt function which is used to write to an open file. The fputs() function stops at the end of the file or when it reaches the specified length passed as a parameter, whichever comes first. The file, string, and the length that has to be written are sent as param 3 min read Like