PHP 8.4.6 Released!

acos

(PHP 4, PHP 5, PHP 7, PHP 8)

acos反余弦

说明

acos(float $num): float

返回 num 的反余弦值,单位是弧度。acos()cos() 的反函数,它的意思是对于 acos() 的定义域中的每个 num 值,$num == cos(acos($num))

参数

num

要处理的参数

返回值

num 的反余弦弧度。

参见

添加备注

用户贡献的备注 1 note

up
0
isweet479338 at gmail dot com
4 days ago
Parameter:
$num: A float value between -1 and 1. (Outside this range will return NAN)

Returns:
The arc cosine of the number in radians.

NAN (Not A Number) if the input is outside [-1, 1].

<?php
$cosValue
= 0.5;
$angle = acos($cosValue); // returns angle in radians
echo $angle; // 1.0471975512 (which is ~60 degrees)

echo rad2deg($angle); // Convert to degrees: ~60
?>
To Top