Definition: The Sin () function is a mathematical function used to calculate the sine of a given number. The result is returned in radians. It is phrased as: Sin (your_number) ;
Also Known As: Sine, Sin
Examples:
<?phpThis returns a value of -0.304810621
echo sin(60) ;
?>

