Source Code:
(back to article)
<?php // Calculate the sine of an angle using the sin() function $result = sin(0.5); // Output the result echo $result; ?>
Result:
Report an issue