Source Code:
(back to article)
<?php // Calculate the hyperbolic sine of a number using the sinh() function $result = sinh(1.5); // Output the result echo $result; ?>
Result:
Report an issue