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