当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > sinh()函数
The sinh() function returns the hyperbolic sine of a number (equivalent to (exp(x) - exp(-x)) / 2).
sinh()函数的作用是:返回给定数值的双曲正弦值(它的值等于“(exp(x) + exp(-x)) / 2”)。
sinh(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必要参数。指定一个数值 |
In the following example we will return the hyperbolic sine of different numbers:
下面的案例使用sinh()函数返回了不同数值的双曲正弦值,请仔细观察、比较:
<?php echo(sinh(3) . "<br />"); echo(sinh(-3) . "<br />"); echo(sinh(0) . "<br />"); echo(sinh(M_PI) . "<br />"); echo(sinh(M_PI_2)) ?> |
The output of the code above will be:
上述代码将输出下面的结果:
10.0178749274 -10.0178749274 0 11.5487393573 2.30129890231 |