Source Code:
(back to article)
<?php $number = 1.5; // Get the inverse hyperbolic cosine of the number using the acosh() function $inverse_hyperbolic_cosine = acosh($number); // Output the inverse hyperbolic cosine of the number echo $inverse_hyperbolic_cosine; ?>
Result:
Report an issue