The asinh()
function returns the inverse hyperbolic sine of a number.
PHP asinh() Function has the following syntax.
asinh(number);
Parameter | Description |
---|---|
number | Required. Specifies a number |
The inverse hyperbolik sine of number.
Return the inverse hyperbolic sine of different numbers
<?php
echo(asinh(7) . "\n");
echo(asinh(6) . "\n");
echo(asinh(2.5));
?>
The code above generates the following result.