PHP asinh() Function

Definition

The asinh() function returns the inverse hyperbolic sine of a number.

Syntax

PHP asinh() Function has the following syntax.

asinh(number);

Parameter

ParameterDescription
numberRequired. Specifies a number

Return

The inverse hyperbolik sine of number.

Example

Return the inverse hyperbolic sine of different numbers


<?php/*www  .  j  a  va 2 s. c o m*/
echo(asinh(7) . "\n");
echo(asinh(6) . "\n");
echo(asinh(2.5));
?>

The code above generates the following result.





















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions