您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1208 复制当前网址

tan



PHP tan() 函数

定义和用法

tan() 函数返回正切。


语法

tan(x)


参数描述
x必需。一个数。


说明

tan() 返回参数 x 的正切值。参数 x 的单位为弧度


例子

在本例中,我们将返回不同的数的正切:

<?php
echo(tan(M_PI_4));
echo(tan(0.50));
echo(tan(-0.50));
echo(tan(5));
echo(tan(10));
echo(tan(-5));
echo(tan(-10));
?>

输出:

1
0.546302489844
-0.546302489844
-3.38051500625
0.648360827459
3.38051500625
-0.648360827459


文章来源:https://liqingbo.com/blog-742.html

上一篇:tanh

下一篇:srand

评论