acos() 函数是用于计算三角问题的有用的预定义 PHP 函数。它用于以弧度为单位查找数字的反余弦值。
注意:acos(-1) 返回 Pi 的值。
用法:
acos(number);
参数 | 描述 | 必需/可选 |
---|---|---|
Number | 在 -1 到 1 范围内指定一个数字。 | Required |
示例 1
<?php
$num=0;
echo "Your number is:".$num;
echo "<br>"."By using 'acos()' function your number is:".(acos($num));
?>
输出:
Your number is:0 By using 'acos()' function your number is:1.5707963267949
例2
<?php
$num=1;
echo "Your number is:".$num;
echo "<br>"."By using 'acos()' function your number is:".(acos($num));
?>
输出:
Your number is:1 By using 'acos()' function your number is:0
例3
<?php
$num=2;
echo "Your number is:".$num;
echo "<br>"."By using 'acos()' function your number is:".(acos($num));
echo "<br>"." Note:Your number is outside the range [-1,1]";
?>
输出:
Your number is:2 By using 'acos()' function your number is:NAN Note:Your number is outside the range [-1,1]
例4
<?php
$num=(0.64);
echo "Your number is:".$num;
echo "<br>"."By using 'acos()' function your number is:".(acos($num));
?>
输出:
Your number is:0.64 By using 'acos()' function your number is:0.87629806116834
例5
<?php
$num=(-0.4);
echo "Your number is:".$num;
echo "<br>"."By using 'acos()' function your number is:".(acos($num));
?>
输出:
Your number is:-0.4 By using 'acos()' function your number is:1.9823131728624
例6
<?php
$num=(-1);
echo "Your number is:".$num;
echo "<br>"."By using 'acos()' function your number is:".(acos($num));
?>
输出:
Your number is:-1 By using 'acos()' function your number is:3.1415926535898
相关用法
- PHP max( )用法及代码示例
- PHP metaphone()用法及代码示例
- PHP mhash_get_hash_name()用法及代码示例
- PHP money_format()用法及代码示例
- PHP mt_getrandmax()用法及代码示例
- PHP mkdir()用法及代码示例
- PHP mhash_keygen_s2k()用法及代码示例
- PHP microtime()用法及代码示例
- PHP mt_rand( )用法及代码示例
- PHP mime_content_type()用法及代码示例
- PHP mysqli_real_escape_string()用法及代码示例
- PHP mktime()用法及代码示例
- PHP mysqli_error()用法及代码示例
- PHP mkdir( )用法及代码示例
- PHP mysqli_fetch_array()用法及代码示例
- PHP mysqli_num_rows()用法及代码示例
- PHP md5_file()用法及代码示例
- PHP mysqli_ping()用法及代码示例
- PHP min( )用法及代码示例
- PHP mhash_get_block_size()用法及代码示例
注:本文由纯净天空筛选整理自 PHP math acos() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。