Source Code:
(back to article)
<?php $number = 0.5; // Get the arc sine of the number using the asin() function $arc_sine = asin($number); // Output the arc sine of the number echo $arc_sine; ?>
Result:
Report an issue