PHP cosh() 函数 PHP cos() 函数 PHP decbin() 函数 PHP cosh() 函数 实例 返回不同数的双曲余弦: <?php echo(cosh(3) . "<br>"); echo(cosh(-3) . "<br>"); echo(cosh(0) . "<br>"); echo(cosh(M_PI) . "<br>"); echo(cosh(2*M_PI)); ?> 定义和用法 cosh() 函数返回一个数的双曲余弦,定义为 ((exp(number) + exp(-number))/2)。 语法 cosh( _number_ ); 参数 描述 _number_ 必需。规定一个数。 技术细节 返回值: _number_ 的双曲余弦。 返回类型: Float PHP 版本: 4.1+ PHP cos() 函数 PHP decbin() 函数