当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP cosh()用法及代码示例


PHP cosh() 是数学三角函数,用于返回数字的双曲余弦。换句话说,我们可以说它转换了双曲余弦。

用法:

float cosh ( float $arg );
参数 描述 必需/可选
arg 指定参数 Required

例子1

<?php
  $n=3;
  echo "Your number is:".$n;
  echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>

输出:

Your number is:3
By using 'cosh()' function your value is:10.067661995778

例子2

<?php
  $n=(-3);
  echo "Your number is:".$n;
  echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>

输出:

Your number is:-3
By using 'cosh()' function your value is:10.067661995778

例子3

<?php
  $n=0;
  echo "Your number is:".$n;
  echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>

输出:

Your number is:0
By using 'cosh()' function your value is:1

示例 4

<?php
  $n=M_PI;
  echo "Your number is:M_PI";
  echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>

输出:

Your number is:M_PI
By using 'cosh()' function your value is:11.591953275522

例 5

<?php
  $n=2*M_PI;
  echo "Your number is:2*M_PI";
  echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>

输出:

Your number is:2*M_PI
By using 'cosh()' function your value is:267.74676148375






相关用法


注:本文由纯净天空筛选整理自 PHP cosh() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。