Get arc sine of different numbers in PHP
Description
The following code shows how to get arc sine of different numbers.
Example
/*from ww w.j a va 2s. c o m*/
<?php
echo(asin(0.614) . "<br>");
echo(asin(-0.14) . "<br>");
echo(asin(0) . "<br>");
echo(asin(-1) . "<br>");
echo(asin(1) . "<br>");
echo(asin(2));
?>
The code above generates the following result.