Math Php

$my_int = round(4.7); 
echo($my_int);
$my_int = round(-4.7);
echo($my_int);
$my_int = round(-4.5);
echo($my_int);
?>