PHP atan() 函数
PHP atan() 函数
实例
通过 atan() 函数返回不同数的反正切:
<?php
echo(atan(0.50) . "<br>");
echo(atan(-0.50) . "<br>");
echo(atan(5) . "<br>");
echo(atan(-5) . "<br>");
echo(atan(100) . "<br>");
echo(atan(-100));
?>
echo(atan(0.50) . "<br>");
echo(atan(-0.50) . "<br>");
echo(atan(5) . "<br>");
echo(atan(-5) . "<br>");
echo(atan(100) . "<br>");
echo(atan(-100));
?>
运行实例 »
定义和用法
atan() 函数返回 arg 的反正切,返回值为介于 -Pi/2 与 Pi/2 之间的数值。
语法
atan(arg);
参数 | 描述 |
---|---|
arg | 必需。规定要处理的参数。 |
技术细节
返回值: | arg 的反正切,单位是弧度。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP 函数
- PHP $_GET 变量
- PHP array_change_key_case() 函数
- PHP array_chunk() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect_assoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP array_walk_recursive() 函数
- PHP arsort() 函数
- PHP current() 函数
- PHP prev() 函数
- PHP sizeof() 函数
- PHP uksort() 函数
- PHP 5 Filesystem 函数