The PHP sinh() function returns the hyperbolic sine of a number, which is equal to (exp(number) – exp(-number))/2).

				
					<?php
echo(sinh(3));
?>
				
			

Syntax

				
					sinh(number)