PHP tan() 函数
PHP tan() 函数
实例
返回不同数的正切:
<?php
echo(tan(M_PI_4) . "<br>");
echo(tan(0.50) . "<br>");
echo(tan(-0.50) . "<br>");
echo(tan(5) . "<br>");
echo(tan(10) . "<br>");
echo(tan(-5) . "<br>");
echo(tan(-10));
?>
echo(tan(M_PI_4) . "<br>");
echo(tan(0.50) . "<br>");
echo(tan(-0.50) . "<br>");
echo(tan(5) . "<br>");
echo(tan(10) . "<br>");
echo(tan(-5) . "<br>");
echo(tan(-10));
?>
运行实例 »
定义和用法
tan() 函数返回一个数的正切。
语法
tan(number);
参数 | 描述 |
---|---|
number | 必需。规定一个弧度值。 |
技术细节
返回值: | number 的正切。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 语法
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP 类型比较
- PHP 常量
- PHP 函数
- PHP $_GET 变量
- PHP array_intersect_ukey() 函数
- PHP array_keys() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_udiff() 函数
- PHP array_uintersect_uassoc() 函数
- PHP compact() 函数
- PHP pos() 函数
- PHP rsort() 函数
- PHP sizeof() 函数
- PHP uasort() 函数
- PHP uksort() 函数
- PHP 5 Directory 函数