Mega Code Archive
Categories
/
Php
/
Math
Round in action
$my_int = round(4.7); echo($my_int); $my_int = round(-4.7); echo($my_int); $my_int = round(-4.5); echo($my_int); ?>