Finding the entire part of a decimal with PHP is very simple, just use the function floor().
veamos el ejemplo. Let's see the example:
<?php
$div = (10/3);
$int = floor($div);
echo "La parte entera es: ".$int;
$int = floor($div);
echo "La parte entera es: ".$int;
?>
No hay comentarios.:
Publicar un comentario