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