三角函数是数学的重要组成部分,PHP的数学函数为我们提供了一些函数,这些函数对于涉及三角函数的计算非常有用。PHP中的tan()函数用于查找参数参数的正切值。
参数参数必须以弧度为单位。
用法:
float tan($value)
参数:该函数接受单个参数$value。它是您要查找其切线值的数字。此参数的值必须以弧度为单位。
返回值:它返回一个浮点数,该浮点数是作为参数传递给它的数字的正切值。
例子:
Input : tan(0.50) Output : 0.54630248984379 Input : tan(-0.50) Output : -0.54630248984379 Input : tan(5) Output : -3.3805150062466 Input : tan(M_PI_4) Output : 1
以下示例程序旨在说明PHP中的tan():
- 传递0.50作为参数:
<?php echo (tan(0.50)); ?>
输出:
0.54630248984379
- 传递-0.50作为参数:
<?php echo (tan(-0.50)); ?>
输出:
-0.54630248984379
- 传递5作为参数:
<?php echo (tan(5)); ?>
输出:
-3.3805150062466
- 当将(M_PI_4)作为参数传递时,M_PI_4是PHP中的常量,其值为0.78539816339744830962:
<?php echo (tan(M_PI_4)); ?>
输出:
1
参考:
http://php.net/manual/en/function.tan.php
相关用法
- PHP next()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP each()用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP each()用法及代码示例
- PHP Ds\Set get()用法及代码示例
- PHP Ds\Set sum()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | tan() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。