I've put the code below just to understand what I want
I want the following to be the 27.588877333333
value only print 27
removing the remaining numbers how could I do this with php
<?php
$numero = 27.588877333333;
echo number_format($numero, 0, '', '');
?>