PHP cosh() Function

The cosh() function returns the hyperbolic cosine of a number (equivalent to (exp(number) + exp(-number)) / 2).

float cosh ( float $arg )

Returns the hyperbolic cosine of arg, defined as (exp(arg) + exp(-arg))/2.

The hyperbolic cosine of arg.

Example -

ParameterDescription
argThe argument to process