Mega Code Archive

 
Categories / Php / Math
 

Floor in action

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