Math Php

$my_double = 4.7;
$my_int = ceil($my_double); 
echo($my_int);
$my_double = -4.7;
$my_int = floor($my_double);
echo($my_int);
 
?>