📜  PHP | cosh( )函数(1)

📅  最后修改于: 2023-12-03 15:33:31.947000             🧑  作者: Mango

PHP | cosh( )函数

简介

cosh() 函数是在 PHP 4 中引入的,用于返回一个数的双曲余弦值。其对应的反函数为 acosh()

语法
cosh( $number );
参数
  • $number:必选参数,表示要求值的数值,可以是浮点数、整数等。
返回值

cosh() 函数的返回值为 $number 的双曲余弦值。

实例
<?php
$number = 10;
echo "cosh( $number ) 的值为 " . cosh( $number ) . "\n";
?>
输出
cosh( 10 ) 的值为 11013.232920103
注意事项
  • $number 越大,cosh() 函数的值越接近无穷大。
  • $number 等于 0 时,cosh() 函数的值为 1。
  • $number 小于 0 时,cosh() 函数的值为 NaN。