PHP sinh() Function

The sinh() function returns the hyperbolic sine of a number, which is equal to (exp(number) - exp(-number))/2).

float sinh ( float $arg )

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

Example -

ParameterDescription
argThe argument to process

Return Values

The hyperbolic sine of arg.