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