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