PHP 8.3.4 Released!

asin

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

asinArc sine

Açıklama

asin(float $num): float

Returns the arc sine of num in radians. asin() is the inverse function of sin(), which means that $num == sin(asin($num)) for every value of num that is in the domain of asin().

Bağımsız Değişkenler

num

The argument to process

Dönen Değerler

The arc sine of num in radians

Ayrıca Bakınız

add a note

User Contributed Notes 1 note

up
-1
rahmatjon at gmail dot com
3 years ago
Hello!
Please put this example below the asin() function's description.
Thank you!

Example:
<?php
$arg
= 0.5;
$val = asin($arg);
echo
"asin(" . $arg . ") = " . $val . " radians.<br/>";
echo
"Pi value = " . pi() . "<br/>";
echo
"asin(" . $arg . ") = " . $val/pi()*180 . " degrees<br/>";

$arg = 1;
$val = asin($arg);
echo
"asin(" . $arg . ") = " . $val . " radians.<br/>";
echo
"Pi value = " . pi() . "<br/>";
echo
"asin(" . $arg . ") = " . $val/pi()*180 . " degrees<br/>";
?>
To Top